Rumah > Soal Jawab > teks badan
混合式开发后端用php,在前台页面中加了<input type="file">,能显示,但无法选择文件,这个功能是想上传图片,并返回数据的。
阿神2017-04-11 11:40:52
<input type="file" accept="video/*;capture=camcorder">
<input type="file" accept="audio/*;capture=microphone">
<input type="file" accept="image/*;capture=camera">直接调用相机
<input type="file" accept="image/*" />调用相机 图片或者相册
高洛峰2017-04-11 11:40:52
重写WebChromeClient,里面增加一个方法就可以了:
public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture)
{
mUploadMessage = uploadMsg;
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("image/*");
startActivityForResult(Intent.createChooser(intent, "选择图片"), FILECHOOSER_RESULTCODE);
}