Reputation: 16191
I wanted to know if android sdk provides any built in components(views) for the specific graphs as seen in the ICS setting screen as follows :
If not then what can be the best way to go for such graph component. Any library suggested ?
Upvotes: 3
Views: 580
Reputation: 19502
No, there is no default API for this from Android. You have to implement your own custom View for this.
Upvotes: 0
Reputation: 40734
Well, luckily Android is open source, so I imagine you can grab the source and look through the settings app to figure out how they achieve it:
http://source.android.com/source/downloading.html
Upvotes: 1