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 r
Solution 1:
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.
Post a Comment for "How Can I Create Custom Controls In Android?"