Android意图打开数据漫游设置页面,无法正常工作



i使用以下代码打开数据漫游设置页

f(bv<Build.VERSION_CODES.JELLY_BEAN)
        {
            Intent intent=new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);
            ComponentName cName = new ComponentName("com.android.phone","com.android.phone.Settings");
            intent.setComponent(cName);
            startActivityForResult(intent,10);
        }
        else
        {
            Intent intent = new Intent();
            intent.setAction(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS);
            startActivityForResult(intent,10);
        }   

并且在大多数设备上都可以正常工作。但是在某些设备上,它打开了设置页面,但是该页面中没有数据漫游选项。

尝试此

Intent intent = new Intent();
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(android.provider.Settings.ACTION_DATA_ROAMING_SETTINGS);
startActivity(intent);

在我的情况下,它使用Android 4.1.2

相关内容

  • 没有找到相关文章

最新更新