Stay organized with collections
Save and categorize content based on your preferences.
DownloadListener
public
interface
DownloadListener
android.webkit.DownloadListener
|
Summary
Public methods |
abstract
void
|
onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength)
Notify the host application that a file should be downloaded
|
Public methods
onDownloadStart
public abstract void onDownloadStart (String url,
String userAgent,
String contentDisposition,
String mimetype,
long contentLength)
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 |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# DownloadListener\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\nDownloadListener\n================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/webkit/DownloadListener \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\n\n\ninterface\nDownloadListener\n`\n\n\n`\n\n\n`\n\n|---------------------------------|\n| android.webkit.DownloadListener |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\nSummary\n-------\n\n| ### Public methods ||\n|------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` abstract void` | ` `[onDownloadStart](/reference/android/webkit/DownloadListener#onDownloadStart(java.lang.String,%20java.lang.String,%20java.lang.String,%20java.lang.String,%20long))`(`[String](/reference/java/lang/String)` url, `[String](/reference/java/lang/String)` userAgent, `[String](/reference/java/lang/String)` contentDisposition, `[String](/reference/java/lang/String)` mimetype, long contentLength) ` Notify the host application that a file should be downloaded |\n\nPublic methods\n--------------\n\n### onDownloadStart\n\nAdded in [API level 1](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract void onDownloadStart (String url, \n String userAgent, \n String contentDisposition, \n String mimetype, \n long contentLength)\n```\n\nNotify the host application that a file should be downloaded\n\n\u003cbr /\u003e\n\n| Parameters ||\n|----------------------|------------------------------------------------------------------------|\n| `url` | `String`: The full url to the content that should be downloaded \u003cbr /\u003e |\n| `userAgent` | `String`: the user agent to be used for the download. \u003cbr /\u003e |\n| `contentDisposition` | `String`: Content-disposition http header, if present. \u003cbr /\u003e |\n| `mimetype` | `String`: The mimetype of the content reported by the server \u003cbr /\u003e |\n| `contentLength` | `long`: The file size reported by the server \u003cbr /\u003e |"]]