混合式开发后端用php,在前台页面中加了<input type="file">,能显示,但无法选择文件,这个功能是想上传图片,并返回数据的。
认证0级讲师
<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/*" />调用相机 图片或者相册
你用的什么浏览器,这个应该是可以的
重写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); }
<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/*" />调用相机 图片或者相册
你用的什么浏览器,这个应该是可以的
重写WebChromeClient,里面增加一个方法就可以了:
public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture)