Re: [android-developers] Re: How can we control the background data for Individual Apps ?

2012-01-07 Thread Kostya Vasilyev
http://developer.android.com/sdk/android-4.0.html Also beware that|getBackgroundDataSetting() http://developer.android.com/reference/android/net/ConnectivityManager.html#getBackgroundDataSetting%28%29|is now deprecated and always returns true---use|getActiveNetworkInfo()

[android-developers] Re: How can we control the background data for Individual Apps ?

2012-01-06 Thread Beth
The background data setting might change for all apps with a quota or for a single app that is using more than the user would like. The background data setting that was once a simple boolean is now a complicated data structure. Does the OS gives some kind of notification or does the app just

[android-developers] Re: How can we control the background data for Individual Apps ?

2011-10-25 Thread dirk
My question is, what's the user experience? For instance, it would be really nice if an app can get notified when approaching a limit so that data is not just cut off mid stream. Does the OS gives some kind of notification or does the app just stop? On Oct 21, 1:47 pm, Mark Murphy