intent之跳转到设置界面

Intent mIntent = new Intent();
ComponentName comp = new ComponentName("com.android.settings", "com.android.settings.WirelessSettings");
mIntent.setComponent(comp);
mIntent.setAction("android.intent.action.VIEW");
startActivity(mIntent);

猜你喜欢

转载自xun005.iteye.com/blog/1738030