ComponentName component =
new ComponentName("com.android.settings","com.android.settings.wifi.WifiSettings");
Intent intent = new Intent();
intent.setComponent(component);
context.startActivity(intent);
查看其他应用的包名,类名方法:
直接在设备上运行需要打开的应用,根据logcat中的信息来确定应用的包名。
比如打开Wi-Fi设置:
在logcat中会看到 Displayed com.android.settings/.wifi.WifiSettings: +455ms
此时可以确定"Wi-Fi设置"这个应用的包名为"com.android.settings"类名为"com.android.settings.wifi.WifiSettings"
最后将应用的包名类名在创建Component对象时设置即可。
打开其他android应用代码,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/kevincode/p/3839892.html