它只是不工作。
我正在做这个
webView.setWebChromeClient(new WebChromeClient() {
public void openFileChooser(ValueCallback<Uri> uploadFile) {
System.out.println("openFileChooser");
mUploadMessage = uploadFile;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("file/*");
PresentationActivity.this.startActivityForResult(
Intent.createChooser(i, "Image Browser"),
FILECHOOSER_RESULTCODE);
}
});
但 openFileChooser 永远不会被调用。有任何想法吗?openFileChooser 在 Android 源代码中被标记为 @hide。我认为这是因为你不应该使用这种方法。还有另一种打开文件选择器的可能性吗?