Xamarin 表单文件选择器未在 ios 上显示相机胶卷或图像库
Posted
技术标签:
【中文标题】Xamarin 表单文件选择器未在 ios 上显示相机胶卷或图像库【英文标题】:Xamarin Forms File Picker not showing camera roll or image gallery on ios 【发布时间】:2019-07-25 21:14:21 【问题描述】:我在 Xamarin Forms 项目中使用 xamarin.plugin.filepicker nuget。选择器不显示用户的相机胶卷或 ios 上的本地图像库 它只显示“Icloud Drive”和“最近删除”文件夹位置。如果可能,我需要显示相机胶卷位置
private async void PickImage_Clicked(object sender, EventArgs args)
string[] fileTypes = null;
if (Device.RuntimePlatform == Device.android)
fileTypes = new string[] "image/png", "image/jpeg" ;
if (Device.RuntimePlatform == Device.iOS)
fileTypes = new string[] "public.image" ; // same as iOS constant UTType.Image
if (Device.RuntimePlatform == Device.UWP)
fileTypes = new string[] ".jpg", ".png" ;
if (Device.RuntimePlatform == Device.WPF)
fileTypes = new string[] "JPEG files (*.jpg)|*.jpg", "PNG files (*.png)|*.png" ;
await PickAndShowFile(fileTypes);
private async Task PickAndShowFile(string[] fileTypes)
try
var pickedFile = await CrossFilePicker.Current.PickFile(fileTypes);
if (pickedFile != null)
FileNameLabel.Text = pickedFile.FileName;
FilePathLabel.Text = pickedFile.FilePath;
if (pickedFile.FileName.EndsWith("jpg", StringComparison.OrdinalIgnoreCase)
|| pickedFile.FileName.EndsWith("png", StringComparison.OrdinalIgnoreCase))
FileImagePreview.Source = ImageSource.FromStream(() => pickedFile.GetStream());
chosenImageBytes = GetImageStreamAsBytes(pickedFile.GetStream());
FileImagePreview.IsVisible = true;
else
FileImagePreview.IsVisible = false;
catch (Exception ex)
FileNameLabel.Text = ex.ToString();
FilePathLabel.Text = string.Empty;
FileImagePreview.IsVisible = false;
【问题讨论】:
github.com/xamarin/Essentials/issues/1539 【参考方案1】:您应该为此目的使用 Xamarin 媒体插件。
【讨论】:
你访问过他们的github页面吗?它需要示例和解释。 如此处所述,您无法在 ios 上使用文件选择器:github.com/xamarin/Essentials/issues/1539 @NickKovalsky 感谢您的提示,但我不确定我在哪里说过您应该使用文件选择器。以上是关于Xamarin 表单文件选择器未在 ios 上显示相机胶卷或图像库的主要内容,如果未能解决你的问题,请参考以下文章