如何在android中的库中打开特定图像

时间:2015-11-14 17:03:31

标签: android

我在我的应用程序中单击图像时使用以下代码打开android库

  Intent intent = new Intent (Intent.AUri.parse(  "content://media/internal/images/media" ));
  intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
  mActivity.startActivity(intent);

如何修改我的代码以打开特定的图像目录或特定的图像

1 个答案:

答案 0 :(得分:0)

据我说你应该试试这个。 在你的MainActivity中介绍了一种为此创建意图的方法 并使用语法

 intent.setComponent(new ComponentName("com.example.administrator.YOUR GALLERY APP NAME","com.example.administrator.YOUR APP.MainActivity"));

其中com.example.administration是您的包的初始名称