diff options
author | Danesh M <daneshm90@gmail.com> | 2015-10-28 14:05:51 -0700 |
---|---|---|
committer | Danesh M <daneshm90@gmail.com> | 2015-10-28 14:05:51 -0700 |
commit | ec9828bf31cdc3cd71ef97f644cef8e1795c6917 (patch) | |
tree | d96c6060c6bb945d23f9e6c2c481ef703ed770cb | |
parent | 99f872ffcf4e6f162dde8f0b66135c2ee1a003bf (diff) | |
download | vendor_cmsdk-ec9828bf31cdc3cd71ef97f644cef8e1795c6917.zip vendor_cmsdk-ec9828bf31cdc3cd71ef97f644cef8e1795c6917.tar.gz vendor_cmsdk-ec9828bf31cdc3cd71ef97f644cef8e1795c6917.tar.bz2 |
CMSDK : Add statusbar constants
Change-Id: I678078429a1c90a26f371db6ff4313f76e4b5169
-rw-r--r-- | src/java/cyanogenmod/providers/CMSettings.java | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/java/cyanogenmod/providers/CMSettings.java b/src/java/cyanogenmod/providers/CMSettings.java index a08254f..290472f 100644 --- a/src/java/cyanogenmod/providers/CMSettings.java +++ b/src/java/cyanogenmod/providers/CMSettings.java @@ -601,6 +601,48 @@ public final class CMSettings { */ public static final String SYSTEM_PROFILES_ENABLED = "system_profiles_enabled"; + /** + * Whether to hide the clock, show it in the right or left + * position or show it in the center + * 0: don't show the clock + * 1: show the clock in the right position (LTR) + * 2: show the clock in the center + * 3: show the clock in the left position (LTR) + * default: 1 + * @hide + */ + public static final String STATUS_BAR_CLOCK = "status_bar_clock"; + + /** + * Display style of AM/PM next to clock in status bar + * 0: Normal display (Eclair stock) + * 1: Small display (Froyo stock) + * 2: No display (Gingerbread/ICS stock) + * default: 2 + * @hide + */ + public static final String STATUS_BAR_AM_PM = "status_bar_am_pm"; + + /** + * Display style of the status bar battery information + * 0: Display the battery an icon in portrait mode + * 2: Display the battery as a circle + * 4: Hide the battery status information + * 5: Display the battery an icon in landscape mode + * 6: Display the battery as plain text + * default: 0 + * @hide + */ + public static final String STATUS_BAR_BATTERY_STYLE = "status_bar_battery_style"; + + /** + * Status bar battery % + * 0: Hide the battery percentage + * 1: Display the battery percentage inside the icon + * 2: Display the battery percentage next to the icon + * @hide + */ + public static final String STATUS_BAR_SHOW_BATTERY_PERCENT = "status_bar_show_battery_percent"; // endregion } |