Here's what you can do:

Extend the AbsSeekBar 
class<http://developer.android.com/reference/android/widget/AbsSeekBar.html>, 
and implement the onDraw method to your liking. You can capture the height 
and width of your custom view by capturing those values in the onSizeChanged 
method. By drawing your circle programatically you can easily make a 
progress circle that looks good at all resolutions. Also, you don't have to 
worry about different device resolutions, since you just need to control the 
size of the view in the layout.

Or, you could extend the ProgressBar class and do the same thing.

Nick

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to