15黑马币
最佳答案其实这个也没那么难,话不多说,直接上代码给你看吧。如果满意望采纳哦。
Intent intent = new Intent("/");
ComponentName cm = new ComponentName("com.android.settings","com.android.settings.WirelessSettings");
//com.android.settings.WirelessSettings 这句就是默认打开的无线和网络设置页面。
//接下来通过意图对象,打开对应的页面就可以了。
intent.setComponent(cm);
intent.setAction("android.int ...
| |
点评
非常感谢,好效率的说,运行起来可以解决我的问题,谢谢。
| |
| |