打开特定设置作为启动器意图

时间:2014-01-17 02:57:29

标签: android android-intent android-launcher

如何将飞行模式设置,位置设置和数据漫游设置作为启动器打开 我已尝试使用以下代码进行开放数据漫游设置,但它无法正常工作

final  Intent intent=new Intent(Settings.ACTION_DATA_ROAMING_SETTINGS);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
final ComponentName cn = new  ComponentName("com.android.phone","com.android.phone.Settings");
intent.setComponent(cn);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);

如何找出这些活动的背景和活动名称

0 个答案:

没有答案