gpt4 book ai didi

java - 如何在 android 中允许对 WebView 的照片库权限?

转载 作者:行者123 更新时间:2023-12-05 00:00:03 25 4
gpt4 key购买 nike

我正在使用 URL 加载 WebView。我的 URL 包含一个按钮,用于从照片库或使用设备相机从手机拍摄照片。我还设置了访问照片库的权限。但该按钮不会打开照片库。

这是我的代码:

webJobForm.getSettings().setLoadsImagesAutomatically(true);
webJobForm.getSettings().setPluginState(WebSettings.PluginState.ON);
webJobForm.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
webJobForm.getSettings().setSupportZoom(true);
webJobForm.getSettings().setBuiltInZoomControls(true);
webJobForm.getSettings().setDisplayZoomControls(true);
webJobForm.getSettings().setLoadWithOverviewMode(true);
webJobForm.setVerticalScrollBarEnabled(true);
webJobForm.setHorizontalScrollBarEnabled(true);
webJobForm.getSettings().setUseWideViewPort(true);
webJobForm.getSettings().setAllowFileAccess(true);
webJobForm.getSettings().setAllowUniversalAccessFromFileURLs(true);
webJobForm.getSettings().setAllowContentAccess(true);
webJobForm.getSettings().setAllowFileAccessFromFileURLs(true);
webJobForm.getSettings().setMediaPlaybackRequiresUserGesture(true);
webJobForm.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
webJobForm.getSettings().setJavaScriptEnabled(true);
webJobForm.setWebChromeClient(new WebChromeClient());
webJobForm.postUrl(bundle.getString("FormUrl"),JobID.getBytes());

最佳答案

你可以这样实现

webView.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (url.equals("alert://alert")) {
Toast.makeText(this, "alert", Toast.LENGTH_LONG).show();
} else if (url.equals("choose://image")) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("image/*");

startActivityForResult(intent, FILECHOOSER_RESULTCODE);
}
return true;
}
});

你的html应该是这样的

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Test Android Popup</title>
</head>
<body>
<label>Test Alert 1:</label>
<form action="alert://alert">
<input type="submit" value="Click me!">
</form>
<br>
<label>Test Browse file</label>
<form action="image://choose">
<input type="submit" value="Choose File">
</form>
</body>
</html>

关于java - 如何在 android 中允许对 WebView 的照片库权限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55720195/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com