webView.setWebChromeClient(new WebChromeClient() {
@Override
public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {
H5WebViewFragment.this.filePathCallback = filePathCallback;
showPhotoPopupWindow();
return true;
}
};);
filePathCallback.onReceiveValue(Uri[]));
网友评论