在WebView中打开附件

时间:2015-09-18 05:57:50

标签: android android-webview

我在public class AddPicture { private Context mContext; public AddPicture(Context context) { this.mContext = context; } public ImageView addNewer(int vtx,int vty) { ImageView i = new ImageView(mContext); // edit i.setImageResource(R.drawable.ic_launcher); i.setAdjustViewBounds(true); i.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT)); return i; } } 上有一个附件。当我点击它时,没有任何反应。我知道way要在WebView上打开附件,但解决方案是基于条件的。是否有一些解决方案可以在不放置条件的情况下打开它,因为我的应用程序支持多个扩展附件。 我不希望下载附件。
这就是我现在正在做的事情,这些仅仅是一些扩展:

WebView

1 个答案:

答案 0 :(得分:2)

您想要的只是部分可能,并且总是需要异常处理。 在Android Webview中,您可以执行以下有关处理链接点击的内容:

1:设置webview客户端拦截所有点击的网址:

设置Web客户端可以检查单击的URL,并为每个不同的URL指定操作。

webview.setWebViewClient(new WebViewClient() {
    public boolean shouldOverrideUrlLoading(WebView view, String url){
        // you can try to open the url, you can also handle special urls here
        view.loadUrl(url);
        return false; // do not handle by default action
   }
});

你可以根据自己的喜好来处理这个问题,处理非常特别需要先下载的特定文件类型,但要在后台下载它们而不加载外部浏览器,你可以这样做:

@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
       // handle different requests for different type of files
       // Download url when it is a music file
       if (url.endsWith(".mp3")) {
           Uri source = Uri.parse(url);
           DownloadManager.Request mp3req = new DownloadManager.Request(source);
           // appears the same in Notification bar while downloading
           mp3req.setDescription("Downloading mp3..");
           mp3req.setTitle("song.mp3");
           if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
               mp3req.allowScanningByMediaScanner();
               mp3req.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
           }                   
           mp3req.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "song.mp3");
           DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
           manager.enqueue(mp3req);
      }
      else if(url.endsWith(".something")) {
          // do something else
      }
      //or just load the url in the web view
      else view.loadUrl(url);
      return true;                
}

2:拦截任何下载的文件:

使用此代码启动下载时也可以拦截。这样,您就可以直接在应用中使用下载的内容。

mWebView.setDownloadListener(new DownloadListener() {
    public void onDownloadStart(String url, String userAgent,
                String contentDisposition, String mimetype,
                long contentLength) {
        //do whatever you like with the file just being downloaded

    }
});

无保证,始终需要处理异常

可以由WebView处理的内容类型取决于所使用的WebView的版本,在当前时间点,WebView只能处理某些类型。对于某些类型,需要特殊权限,例如html5视频需要hardware acceleration。 另一个支持示例:Android 3.0之前不支持SVG。还有许多其他示例,在最近的WebView版本中已经实现了对某些类型的支持,但对于旧版本则不存在。

您可以在此处阅读有关当前WebView实施的更多信息:https://developer.chrome.com/multidevice/webview/overview

没有免费午餐