【问题标题】:Picking only images from gallery Android仅从图库 Android 中挑选图像
【发布时间】:2017-03-15 10:10:27
【问题描述】:

我用

 Intent intent = new Intent();
        intent.setType("image/*");
        intent.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(Intent.createChooser(intent, null), Photo.REQUEST_PICK_FROM_EXISTING);

仅显示图像,并且可以选择使用也显示视频的第三方文件管理器应用程序。我希望用户选择第三方应用程序,但只选择图像。有什么办法控制吗?

【问题讨论】:

    标签: android android-intent android-gallery


    【解决方案1】:

    使用下面的代码:

         Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
         photoPickerIntent.setType("image/*");
         startActivityForResult(photoPickerIntent, SELECT_PHOTO);
    

    希望这会有所帮助。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-01-22
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多