Android如何显示下载文件列表?

时间:2011-11-18 19:30:03

标签: java android browser download android-webview

我使用WebView在我的应用程序中下载文件,如下所示:

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浏览器中下载文件页面的模式。运行我的应用程序最方便的是你的web浏览器Android,但用户没有意识到另外的应用程序已加载?

1 个答案:

答案 0 :(得分:0)

查看创建扩展ListActivity的活动

这是一个例子: http://www.vogella.de/articles/AndroidListView/article.html

或google之类的" android listActivity示例"很多例子