0

I need to show to the user the speed of my robot's motors. I thought about something like that:

How can I achieve this in Android? Should I use Canvas? Or maybe you can point out a better way to represent these motors' speeds?

Defozo
  • 2,946
  • 6
  • 32
  • 51
  • Does this pic describe the exact UI your users want to see? If this is the case, use a simple ProgressBar. If you want more, then create your own Custom view for more control. – Henry Nov 14 '15 at 08:27

1 Answers1

0

You should use ProgressBar with a custom layout.

You can then update the progress using ProgressBar.setProgress and customizing the style is well documented.

Here is a relevant thread describing exactly how to customize it ~ How To Customize a Progress Bar in Android

Community
  • 1
  • 1
Izaak Prats
  • 159
  • 1
  • 8