我有一个 Xamarin 应用程序。
该应用程序有一个 webview 控件来打开网站。我想在需要相机的特定网页中使用手机的相机。如果未打开此特定页面,则无需为应用程序请求相机权限。我正在尝试从页面 JavaScript 向 Xamarin 应用程序发送请求并请求相机访问权限。
我按照本教程创建了一个混合 Web 视图,允许我将命令从 Javascript 发送到 C#:https://learn.microsoft.com/en-us/xamarin/xamarin-forms/app-fundamentals/custom-renderer/混合网络视图
所以我注册了一个将从 JavaScript 调用的操作,如下所示:
hybridWebView.RegisterAction(async data =>
{
DisplayAlert("Hi ! you called this action from Javascript.");
// Request camera permission
RequestCameraAccessAsync();
});
使用 RequestCameraAccessAsync 为:
private async void RequestCameraAccessAsync()
{
var status = await Permissions.CheckStatusAsync<Permissions.Camera>();
if (status == PermissionStatus.Granted)
return;
if (status == PermissionStatus.Denied && DeviceInfo.Platform == DevicePlatform.iOS)
{
// Prompt the user to turn on in settings
// On iOS once a permission has been denied it may not be requested again from the application
return;
}
status = Permissions.RequestAsync<Permissions.Camera>().Result;
}
JavaScript 和 C# 之间的桥梁运行良好。但是,每当代码点击请求权限时,它都会失败并提示:必须在主线程上调用权限请求。
我理解这个错误。但考虑到权限请求只能在已注册的操作上完成,有什么方法可以实现这一点吗?
使用要点主线程
MainThread.BeginInvokeOnMainThread(() =>
{
// Code to run on the main thread
});