国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android webview打開本地圖片上傳實現代碼

2019-12-12 03:41:53
字體:
來源:轉載
供稿:網友

Webview打開本地圖片選擇器十分之麻煩,其在安卓系統3x 4x 5x上的行為都不同,處理也不同,所以之前差點崩潰。經過測試和完善,最終其在各個版本上都能完美工作。

直接上代碼

package com.testandroid.webview;import android.content.Intent;import android.net.Uri;import android.os.Bundle;import android.support.v7.app.AlertDialog;import android.support.v7.app.AppCompatActivity;import android.view.KeyEvent;import android.view.View;import android.webkit.JsResult;import android.webkit.ValueCallback;import android.webkit.WebBackForwardList;import android.webkit.WebChromeClient;import android.webkit.WebView;import android.webkit.WebViewClient;import android.widget.Button;import com.testandroid.R;public class WebViewActivity extends AppCompatActivity {   private final String TAG = WebViewActivity.class.getSimpleName();  private Button button;  private WebView webView;  private String recgPic = "http://m.shitu.chinaso.com/mx/index.html";  public final static int FILECHOOSER_RESULTCODE = 1;  public final static int FILECHOOSER_RESULTCODE_FOR_ANDROID_5 = 2;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_web_view);    button = (Button) findViewById(R.id.button);    button.setOnClickListener(new View.OnClickListener() {      @Override      public void onClick(View v) {      }    });    initTestWebView();  }  private void initTestWebView() {    webView = (WebView) findViewById(R.id.tempWebView);    WiewSettings settings = webView.getSettings();    settings.setJavaScriptEnabled(true);    webView.setWebChromeClient(new WebChromeClient() {      @Override      public boolean onJsAlert(WebView view, String url, String message, JsResult result) {        AlertDialog.Builder builder = new AlertDialog.Builder(view.getContext());        builder.setTitle("xxx提示").setMessage(message).setPositiveButton("確定", null);        builder.setCancelable(false);        builder.setIcon(R.mipmap.ic_launcher);        AlertDialog dialog = builder.create();        dialog.show();        result.confirm();        return true;      }      //擴展瀏覽器上傳文件      //3.0++版本      public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType) {        openFileChooserImpl(uploadMsg);      }      //3.0--版本      public void openFileChooser(ValueCallback<Uri> uploadMsg) {        openFileChooserImpl(uploadMsg);      }      public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture) {        openFileChooserImpl(uploadMsg);      }      @Override      public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {        onenFileChooseImpleForAndroid(filePathCallback);        return true;      }    });    webView.setWebViewClient(new WebViewClient() {      @Override      public boolean shouldOverrideUrlLoading(WebView view, String url) {        view.loadUrl(url);        return true;      }    });    webView.loadUrl(recgPic);  }  public ValueCallback<Uri> mUploadMessage;  private void openFileChooserImpl(ValueCallback<Uri> 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);  }  public ValueCallback<Uri[]> mUploadMessageForAndroid5;  private void onenFileChooseImpleForAndroid(ValueCallback<Uri[]> filePathCallback) {    mUploadMessageForAndroid5 = filePathCallback;    Intent contentSelectionIntent = new Intent(Intent.ACTION_GET_CONTENT);    contentSelectionIntent.addCategory(Intent.CATEGORY_OPENABLE);    contentSelectionIntent.setType("image/*");    Intent chooserIntent = new Intent(Intent.ACTION_CHOOSER);    chooserIntent.putExtra(Intent.EXTRA_INTENT, contentSelectionIntent);    chooserIntent.putExtra(Intent.EXTRA_TITLE, "Image Chooser");    startActivityForResult(chooserIntent, FILECHOOSER_RESULTCODE_FOR_ANDROID_5);  }  @Override  protected void onActivityResult(int requestCode, int resultCode,Intent intent) {    if (requestCode == FILECHOOSER_RESULTCODE) {      if (null == mUploadMessage)        return;      Uri result = intent == null || resultCode != RESULT_OK ? null: intent.getData();      mUploadMessage.onReceiveValue(result);      mUploadMessage = null;    } else if (requestCode == FILECHOOSER_RESULTCODE_FOR_ANDROID_5){      if (null == mUploadMessageForAndroid5)        return;      Uri result = (intent == null || resultCode != RESULT_OK) ? null: intent.getData();      if (result != null) {        mUploadMessageForAndroid5.onReceiveValue(new Uri[]{result});      } else {        mUploadMessageForAndroid5.onReceiveValue(new Uri[]{});      }      mUploadMessageForAndroid5 = null;    }  }  @Override  public boolean onKeyDown(int keyCode, KeyEvent event) {    if (webView.canGoBack() && event.getKeyCode() == KeyEvent.KEYCODE_BACK) {      //獲取歷史列表      WebBackForwardList mWebBackForwardList = webView          .copyBackForwardList();      //判斷當前歷史列表是否最頂端,其實canGoBack已經判斷過      if (mWebBackForwardList.getCurrentIndex() > 0) {        webView.goBack();        return true;      }    }    return super.onKeyDown(keyCode, event);  }}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 肇州县| 容城县| 罗江县| 阿勒泰市| 延津县| 天气| 封开县| 丰台区| 略阳县| 五原县| 河间市| 罗山县| 西畴县| 嘉峪关市| 高安市| 房山区| 黔江区| 噶尔县| 重庆市| 靖西县| 佳木斯市| 墨江| 新沂市| 克拉玛依市| 河曲县| 上蔡县| 伊宁县| 大丰市| 衡山县| 成武县| 仁化县| 南木林县| 伊吾县| 秦安县| 城固县| 固始县| 新营市| 搜索| 浑源县| 达拉特旗| 汾西县|