2011-11-18 54 views
2

我用的WebView在我的應用程序下載的文件,如下圖所示:Android如何顯示下載的文件列表?

webView.setDownloadListener(new DownloadListener() { 
      public void onDownloadStart(String url, String userAgent, 
        String contentDisposition, String mimetype, 
        long contentLength) { 
       Intent intent = new Intent(Intent.ACTION_VIEW); 
       intent.setData(Uri.parse(url)); 
       startActivity(intent); 
      } 
     }); 

我怎樣才能在我的應用程序中顯示下載的文件的列表?我希望下載文件頁面的模式與標準Android Web瀏覽器中下載文件頁面的模式類似。我的應用程序的運行最方便的是你的網頁瀏覽器Android,但用戶沒有意識到另一個應用程序加載?

回答

相關問題