Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I create custom controls in Android?

I would like to create a custom control in my Android App. It will be a circular control with some smaller moveable circles that will indicate a specific value.

Is there a way to realize this?

Are there at least some nice tutorials where I can read how to create a custom control?

like image 231
SvenFinke Avatar asked Jun 25 '09 21:06

SvenFinke


1 Answers

Have a look at the custom components section of the Android Dev Guide. The usual approach is to extend a View and override applicable methods.

like image 89
Josef Pfleger Avatar answered Nov 09 '22 15:11

Josef Pfleger