質問

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