我在我的应用程序中单击图像时使用以下代码打开android库
Intent intent = new Intent (Intent.AUri.parse( "content://media/internal/images/media" ));
intent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
mActivity.startActivity(intent);
如何修改我的代码以打开特定的图像目录或特定的图像
答案 0 :(得分:0)
据我说你应该试试这个。
在你的MainActivity
中介绍了一种为此创建意图的方法
并使用语法
intent.setComponent(new ComponentName("com.example.administrator.YOUR GALLERY APP NAME","com.example.administrator.YOUR APP.MainActivity"));
其中com.example.administration
是您的包的初始名称