学无止境,每天都在进步,是我最快乐的事情!

"width: 0px; height: 0px;" id="image" type="file" accept="image/*">

上面的代码是H5里面的,我通过网页查看源码拿出来的,看了很多文章,我才知道,Android中webview却屏蔽了这个type=”file” 这个功能,说是为了安全起见,真是搞不懂!
起初我很迷茫,用手机可以打开网址,点击按钮可以打开相册,ios也可以,尼玛,Android就是没反应,有的机型甚至还崩溃,无语,苦恼,没办法,到群里去问,有个哥们很好,给了我点建议,和一些文章查看,终于搞定了。
说那么多,么有,上代码:

 private WebView wv;    private String url ="http://shanghai.job1s.com/wap/member/index.php?c=photo";    private ValueCallback mUploadMessage;    public ValueCallback uploadMessage;    public static final int REQUEST_SELECT_FILE = 100;    private final static int FILECHOOSER_RESULTCODE = 2;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        wv = (WebView) findViewById(R.id.webview);        //设置支持Javascript        wv.getSettings().setJavaScriptEnabled(true);          wv.loadUrl(url);        wv.setWebViewClient(new WebViewClient() {            @Override            public boolean shouldOverrideUrlLoading(WebView view, String url) {                //返回值是true的时候控制去WebView打开,为false调用系统浏览器或第三方浏览器                view.loadUrl(url);                return false;            }            @Override            public void onPageStarted(WebView view, String url, Bitmap favicon) {            }            @Override            public void onPageFinished(WebView view, String url) {            }        });        wv.setWebChromeClient(new WebChromeClient(){            // For 3.0+ Devices (Start)            // onActivityResult attached before constructor            protected void openFileChooser(ValueCallback uploadMsg, String acceptType)            {                mUploadMessage = uploadMsg;                Intent i = new Intent(Intent.ACTION_GET_CONTENT);                i.addCategory(Intent.CATEGORY_OPENABLE);                i.setType("image/*");                startActivityForResult(Intent.createChooser(i, "File Browser"), FILECHOOSER_RESULTCODE);            }            // For Lollipop 5.0+ Devices            @TargetApi(Build.VERSION_CODES.LOLLIPOP)            public boolean onShowFileChooser(WebView mWebView, ValueCallback filePathCallback, WebChromeClient.FileChooserParams fileChooserParams)            {                if (uploadMessage != null) {                    uploadMessage.onReceiveValue(null);                    uploadMessage = null;                }                uploadMessage = filePathCallback;                Intent intent = fileChooserParams.createIntent();                try                {                    startActivityForResult(intent, REQUEST_SELECT_FILE);                } catch (ActivityNotFoundException e)                {                    uploadMessage = null;                    Toast.makeText(getBaseContext(), "Cannot Open File Chooser", Toast.LENGTH_LONG).show();                    return false;                }                return true;            }            //For Android 4.1 only            protected void openFileChooser(ValueCallback 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, "File Browser"), FILECHOOSER_RESULTCODE);            }            protected void openFileChooser(ValueCallback uploadMsg)            {                mUploadMessage = uploadMsg;                Intent i = new Intent(Intent.ACTION_GET_CONTENT);                i.addCategory(Intent.CATEGORY_OPENABLE);                i.setType("image/*");                startActivityForResult(Intent.createChooser(i, "File Chooser"), FILECHOOSER_RESULTCODE);            }        });    }    @Override    public void onActivityResult(int requestCode, int resultCode, Intent intent)    {        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)        {            if (requestCode == REQUEST_SELECT_FILE)            {                if (uploadMessage == null)                    return;                uploadMessage.onReceiveValue(WebChromeClient.FileChooserParams.parseResult(resultCode, intent));                uploadMessage = null;            }        }        else if (requestCode == FILECHOOSER_RESULTCODE)        {            if (null == mUploadMessage)                return;            // Use MainActivity.RESULT_OK if you're implementing WebView inside Fragment            // Use RESULT_OK only if you're implementing WebView inside an Activity            Uri result = intent == null || resultCode != MainActivity.RESULT_OK ? null : intent.getData();            mUploadMessage.onReceiveValue(result);            mUploadMessage = null;        }        else            Toast.makeText(getBaseContext(), "Failed to Upload Image", Toast.LENGTH_LONG).show();    }

更多相关文章

  1. 代码中进行RelativeLayout布局的修改添加
  2. 让你的代码量减少3倍!使用kotlin开发Android(一)
  3. Android也架构之四:门面模式解析获取的html代码
  4. Android客户端代码保护技术-完整性校验
  5. 【Android软件】ES文件浏览器:Android资源管理器
  6. 代码混淆—android被反编译的两种解决方案
  7. Android开发之如何手写代码进行页面布局

随机推荐

  1. [RK3399][Android7.1] 调试笔记 --- 设置
  2. Android应用程序获取ROOT权限的方法
  3. Android(安卓)Framework AIDL的使用
  4. 推送sdk (类似百度 推送 ) android mina (
  5. Android(安卓)NDK移植libiconv和libxml2
  6. Eclipse 环境下安装PhoneGap开发插件
  7. android 项目串口通信(serialPort)开发遇到
  8. android 开源 OCR 项目 及手写识别[转]
  9. Android(安卓)Weekly Notes Issue #232
  10. Android新线程中更新主线程UI中的View方