如何在没有startActivityForResult的情况下启动默认的android库

时间:2012-08-17 17:01:12

标签: android gallery start-activity

如标题中所示,但我不需要返回任何标题!只是打开一个画廊..我试过

     Intent intent = new Intent(Intent.ACTION_VIEW, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);
    intent.setAction(Intent.ACTION_VIEW);
    startActivity(intent);

但我对HTC设备库存有问题...我只需要在设备上打开一个库...库存或替代/下载的。

使用startActivityForResult返回所选照片,但我不在乎......我需要用户可以长按以选择多张照片而不是点击“分享通过”命令

1 个答案:

答案 0 :(得分:0)

为什么不使用GridView创建自己的图库并填充图像,您必须为此实现自定义适配器,请查看Displaying images from SD Card tutorial