I've been trying to search on Google ways to implement percents (%) user interface and couldn't find anything that may help! My goal is to make progress like the Bootstrap Progress bar (see here) in Android.
My goal is to show player win percentage (like 55%) in a modern way.
I've been checking the ProgressBar and ProgressDialog but they are just progress circles for data and has nothing to do with what I need.
The closest thing I faced is the SeekBar, but SeekBar meant to be changed, and I need only an indicator for showing percentage without changing it.
Of course I can make a label and write "55%" but I'm pretty sure there is something modern out there.. Any idea for it?
Thank you!