【发布时间】: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