summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJesse Chan <jc@lineageos.org>2020-05-19 16:05:23 +0800
committeralk3pInjection <webmaster@raspii.tech>2022-05-07 00:20:58 +0800
commitffcc9052a214af8e2d516edfad34ad7b8392f426 (patch)
treeb983f6d9ee91c24d39b5895d661b69c7ec099bc9 /core
parent6b9de78b42a440143c87e27acf85704b24a3fd01 (diff)
SystemUI: Implement hide gestural navigation hint bar [1/2]
Author: Jesse Chan <jc@lineageos.org> Date: Tue Jun 2 13:59:52 2020 +0800 SystemUI: Set no hint overlay to highest priority As overlays are also used to apply navigation mode, it is needed to set our customization overlay to highest priority to ensure it is applied. Change-Id: I41ca4b7ea99fea9f62d2e8ece5114f682e8e7fe9 Signed-off-by: Jesse Chan <jc@lineageos.org> Change-Id: Ic6695dfe929db443f169d59f153e14a6de249590 Signed-off-by: Jesse Chan <jc@lineageos.org>
Diffstat (limited to 'core')
-rw-r--r--core/java/android/provider/Settings.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java
index 9b1003104c3b..5046ccf95542 100644
--- a/core/java/android/provider/Settings.java
+++ b/core/java/android/provider/Settings.java
@@ -10370,6 +10370,12 @@ public final class Settings {
public static void setLocationProviderEnabled(ContentResolver cr,
String provider, boolean enabled) {
}
+
+ /**
+ * Whether to show swipe up hint in gestural nav mode
+ * @hide
+ */
+ public static final String NAVIGATION_BAR_HINT = "navigation_bar_hint";
}
/**