gpt4 book ai didi

android - 在 photoPicker 中仅显示特定格式

转载 作者:搜寻专家 更新时间:2023-11-01 09:34:03 24 4
gpt4 key购买 nike

我想显示一个 photoPicker,但只显示特定格式的图像(png 和 jpeg)。

目前我有这个:

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

它可以工作,但我在 photoPicker 中拥有所有图像格式。

我可以将 setType() 更改为如下所示:setType("png, jpeg") 吗?

最佳答案

试试这个

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

或者您可以使用 onActivityResult 来检查文件:

filePath.endsWith(".jpeg")

关于android - 在 photoPicker 中仅显示特定格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44823059/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com