How to redirect to Phone settings page from my current android application ? I have already tried with this code. But it is not working.

startActivityForResult(new Intent(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS), 0);

Am I missing something here ?

Thanks in advance.

有帮助吗?

解决方案

Try this one

Intent intent=new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);
ComponentName cName = new ComponentName("com.android.phone","com.android.phone.Settings");
intent.setComponent(cName); 

and this

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top