Rajkiran
Rajkiran

Reputation: 16191

How to generate graphs as in Android ICS data usage settings

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 :

enter image description here enter image description here

If not then what can be the best way to go for such graph component. Any library suggested ?

Upvotes: 3

Views: 580

Answers (2)

Chandra Sekhar
Chandra Sekhar

Reputation: 19502

No, there is no default API for this from Android. You have to implement your own custom View for this.

Upvotes: 0

Sam Dozor
Sam Dozor

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

Related Questions