http://blog.youkuaiyun.com/napolun007/article/details/6088439
刚才经过自己的测试,找到了可以开启另外个程序的方法,现在分享给大家:
Intent intent = new Intent(Intent.ACTION_MAIN);
ComponentName com = new ComponentNa("cn.com.pubinfo.citymanage","cn.com.pubinfo.citymanage.citymanage");
intent.setComponent(com);
startActivity(intent);
官方SDK的解释:
public ComponentName (String pkg, String cls)
Since:
API Level 1