android 打开指定包名的apk

例如:

系统音乐

Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName cn = new ComponentName("com.android.music",
"com.android.music.MusicBrowserActivity");
intent.setComponent(cn);
try 

{
startActivity(intent);
} catch (Exception e)

 {
e.printStackTrace();
}


关键是包名和类名。

android 打开指定包名的apk

上一篇:Android 实现ListView不可滚动效果


下一篇:Android peferenceActivity 自定义标题简单方法