一些
questions
与此非常相似,但它们都不是作为独立应用程序打开库,总是在调用
startActivity(intent);
.
see here
如果没有名为“com.android”的包,则以下代码没有任何用处。手机上的多媒体资料:
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("com.android.gallery");
if (launchIntent != null) {
startActivity(launchIntent);//null pointer check in case package name was not found
}
Intent intent1 = new Intent(Intent.ACTION_VIEW, Uri.parse(Environment.getExternalStoragePublicDirectory(
Environment.DIRECTORY_MOVIES)));
startActivity(intent1);
这也会打开我应用程序中的图库:
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(
"content://media/internal/images/media/"));
startActivity(intent);