diff options
| -rw-r--r-- | api/current.xml | 11 | ||||
| -rw-r--r-- | core/java/android/app/DownloadManager.java | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/api/current.xml b/api/current.xml index 2a89d04..65bab0d 100644 --- a/api/current.xml +++ b/api/current.xml @@ -26658,6 +26658,17 @@ visibility="public" > </field> +<field name="EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS" + type="java.lang.String" + transient="false" + volatile="false" + value=""extra_click_download_ids"" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="PAUSED_QUEUED_FOR_WIFI" type="int" transient="false" diff --git a/core/java/android/app/DownloadManager.java b/core/java/android/app/DownloadManager.java index 570e494..592a63b 100644 --- a/core/java/android/app/DownloadManager.java +++ b/core/java/android/app/DownloadManager.java @@ -272,6 +272,14 @@ public class DownloadManager { */ public static final String EXTRA_DOWNLOAD_ID = "extra_download_id"; + /** + * When clicks on multiple notifications are received, the following + * provides an array of download ids corresponding to the download notification that was + * clicked. It can be retrieved by the receiver of this + * Intent using {@link android.content.Intent#getLongArrayExtra(String)}. + */ + public static final String EXTRA_NOTIFICATION_CLICK_DOWNLOAD_IDS = "extra_click_download_ids"; + // this array must contain all public columns private static final String[] COLUMNS = new String[] { COLUMN_ID, |
