【发布时间】:2016-12-26 11:17:08
【问题描述】:
我需要在图库中打开多张图片才能通过滑动查看... 我知道如何打开 1 张图片..
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + "/sdcard/test.jpg"), "image/*");
startActivity(intent);
我如何查看多张图片以通过在一个意图中滑动来查看它们。 我有图片的路径...我需要在图库中查看它们。
【问题讨论】:
标签: java android android-intent