启动非系统应用程序:
- 前名一个参数是应用程序的包名,后一个是这个应用程序的主Activity名
- Intent intent=new Intent();
- intent.setComponent(new ComponentName("com.zyss.mxhb",
- "com.zyss.mxhb.SplashActivity"));
- startActivity(intent);
启动系统自带的应用程序(日历);
- Intent intent=new Intent();
- intent.setComponent(new ComponentName("com.android.calendar", "com.android.calendar.LaunchActivity"));
- startActivity(intent);