now i am working in android studio 2.2.2 tool.In my app if no internet connection then i should open mobile network setting page.
I am using this code
Intent intent=new Intent(Settings.ACTION_SETTINGS);
ComponentName cName = new ComponentName("com.android.phone","com.android.phone.Settings");
intent.setComponent(cName);
once i click setting in popup its moving to mobile network more setting page not moving to setting page.It should move to setting page.
Thanks in advance.