expo-image-picker android没有选择按钮

问题描述

我使用的是react native和expo,expo-image-picker在iO上运行良好,并且在android上运行良好,但有一个例外。用户从图库中拉出图片时,没有“确定”,“选择”或“完成”按钮。

用户必须单击裁剪按钮以接受图像。这是典型的吗?我觉得这会造成混乱,并且会带来糟糕的用户体验...

const chooseImage = async (useCamera,index) => {
if (!(await checkPermission(useCamera))) {
  Alert.alert(
    "Permission missing.","Camera permission is required to take image."
  );
  return;
}
const method = useCamera ? "launchCameraAsync" : "launchImageLibraryAsync";
const result = await ImagePicker[method]({
  allowsEditing: true,base64: false,aspect: [3,4],});
if (!result.cancelled) {
  // upload image and retrieve image url
  const {height,width,type,uri} = result;
  profile.images[index] = uri;
  if (uri != null) {
    setProfile(profile);
  }
  setChangedValue("images");
}
};

enter image description here

更新 发现如果删除编辑功能allowsEditing,则可以选择照片。但是我希望用户能够进行编辑,所以我很好奇为什么编辑上没有“确定”按钮?

解决方法

我发现裁剪按钮是“完成”按钮。

没有其他方法可以实现图像选择,因此这只是图像选择器的设计方面。

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...