我在响应式网站上使用简单的webview。应用程序工作正常,但文件上传控件不起作用,我无法从应用程序上传图像,文档,ppt或excel文件。
我在android studio中创建了webview。
我添加了以下代码
Uri uri = Uri.parse("https://myurl.com/");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
final Activity activity = this;
mWebView.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
activity.setProgress(progress * 1000);
}
});
mWebView.setWebViewClient(new WebViewClient() {
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
}
});
但它在浏览器中打开应用程序。 任何人都可以帮助我吗?