Till android 5, user could turn on cellular data from the roaming settings window. So Settings.ACTION_DATA_ROAMING_SETTINGS is used to send user there.
In lollipop though, you no longer can do that and the option to turn on mobile data is under data usage window. Question is, how can send user to that window as Settings don't seem to have anything to help me.
Thanks
While there is no direct action available, you can launch the data usage activity directly. Here is how it works
I don't think there is currently a way to show programmatically the Settings - Data Usage screen on Lollipop 5.0.
The class android.provider.Settings contains all possible values for Intent actions.
I tried all of these values by they did not lead to Data Usage:
As a a fallback you can either show the generic Settings screen (ACTION_SETTINGS) or show a Toast notification telling the user to enable the Mobile Data Network.