Added in API level 1
    DownloadListener
interface DownloadListener
| android.webkit.DownloadListener | 
Summary
| Public methods | |
|---|---|
| abstract Unit | onDownloadStart(url: String!, userAgent: String!, contentDisposition: String!, mimetype: String!, contentLength: Long)Notify the host application that a file should be downloaded | 
Public methods
onDownloadStart
Added in API level 1
      abstract fun onDownloadStart(
url: String!,
userAgent: String!,
contentDisposition: String!,
mimetype: String!,
contentLength: Long
): Unit
Notify the host application that a file should be downloaded
| 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 | 
