【问题标题】:expo-image-picker android doesn't have a select buttonexpo-image-picker android没有选择按钮
【发布时间】:2020-09-19 17:31:28
【问题描述】:

我正在使用 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");
}
};

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

【问题讨论】:

    标签: android expo react-native-android android-image react-native-image-picker


    【解决方案1】:

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

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

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2020-03-02
    • 2020-11-04
    • 2018-10-31
    • 2022-12-10
    • 1970-01-01
    • 2022-01-27
    • 2022-12-13
    相关资源
    最近更新 更多