现在的位置: 首页 > 综合 > 正文

打开无线网设置面板

2013年12月23日 ⁄ 综合 ⁄ 共 265字 ⁄ 字号 评论关闭

     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);

抱歉!评论已关闭.