如何使用默认Android图库仅显示应用程序的照片?基本上我只需要在画廊上显示我的应用程序照片。
非常感谢
答案 0 :(得分:1)
当然!您必须参数化正在启动Gallery Application的Intent:将Action设置为Intent.ACTION_PICK。将MIME类型设置为one of the image types或image / *。将数据设置为要显示的文件的Uri。
Intent galleryStarter = new Intent();
galleryStarter.setAction(Intent.ACTION_PICK);
galleryStarter.setType("image/*");
galleryStarter.setData(Uri.fromFile(imageFileToShow));
context.startActivity(galleryStarter);