I would like to implement a time settings wheel widget like the one iPhone has (http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/mobilehig/art/ui_datetimepicker.jpg).
- Should I use GlSurfaceView or just extend View?
- Should I make it as a compound View (it would consist of several Views) or draw everything on the Canvas in onDraw?
- In case I won't extend GlSurfaceView, how to do (smooth) animations? Start a Thread and call postInvalidate()?