diff options
author | Adnan Begovic <adnan@cyngn.com> | 2016-06-02 15:29:16 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2016-06-06 10:14:28 -0700 |
commit | 3d98dae969b917d34efe85dbf45b67a6c8237304 (patch) | |
tree | 1705520001bd64f5021697be162dcfcd5ed2d271 /core | |
parent | a563b3040672c17dcbdf966acb2efc60824563d7 (diff) | |
download | frameworks_base-3d98dae969b917d34efe85dbf45b67a6c8237304.zip frameworks_base-3d98dae969b917d34efe85dbf45b67a6c8237304.tar.gz frameworks_base-3d98dae969b917d34efe85dbf45b67a6c8237304.tar.bz2 |
SystemUI: Add support for persistent usb drive notification.
This option can be enabled via config_persistUsbDriveNotification
Change-Id: I331a759aeb914e46e3ef4842896d3465d894707a
TICKET: PAELLA-225
Diffstat (limited to 'core')
-rw-r--r-- | core/res/res/values/cm_symbols.xml | 3 | ||||
-rw-r--r-- | core/res/res/values/config.xml | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/res/res/values/cm_symbols.xml b/core/res/res/values/cm_symbols.xml index 0e517b7..8a71499 100644 --- a/core/res/res/values/cm_symbols.xml +++ b/core/res/res/values/cm_symbols.xml @@ -139,4 +139,7 @@ <!-- Uicc hotswapped event configuration needed notification --> <java-symbol type="string" name="uicc_hot_swapped_event_title" /> <java-symbol type="string" name="uicc_hot_swapped_event_text" /> + + <!-- Usb drive persistent notification --> + <java-symbol type="bool" name="config_persistUsbDriveNotification" /> </resources> diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index 8629687..c7846cf 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -2566,4 +2566,7 @@ <!-- Older rotation sensors are not setting event.timestamp correctly. Setting to true will use SystemClock.elapsedRealtimeNanos() to set timestamp. --> <bool name="config_useSystemClockforRotationSensor">false</bool> + + <!-- Whether to persist the notification for when a usb drive device is plugged in --> + <bool name="config_persistUsbDriveNotification">false</bool> </resources> |