Most visited

Recently visited

Added in API level 1

DownloadListener

public interface DownloadListener

android.webkit.DownloadListener


Summary

Public methods

abstract void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength)

通知主机应用程序应该下载文件

Public methods

onDownloadStart

Added in API level 1
void onDownloadStart (String url, 
                String userAgent, 
                String contentDisposition, 
                String mimetype, 
                long contentLength)

通知主机应用程序应该下载文件

Parameters
url String: The full url to the content that should be downloaded
userAgent String: the user agent to be used for the download.
contentDisposition String: Content-disposition http header, if present.
mimetype String: The mimetype of the content reported by the server
contentLength long: The file size reported by the server

Hooray!