简体   繁体   English

仅从Android相册中挑选图像

[英]Picking only images from gallery Android

I use 我用

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

Only images are getting displayed and with an option to use third party file manager apps which shows videos too. 仅显示图像,并且可以使用也显示视频的第三方文件管理器应用程序。 I want user to choose third party apps but choose only images. 我希望用户选择第三方应用程序,但仅选择图像。 Is there any way to control it ? 有什么办法可以控制吗?

Use the below code: 使用以下代码:

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

Hope this helps. 希望这可以帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM