diff options
author | 2024-02-29 17:11:30 +0000 | |
---|---|---|
committer | 2024-02-29 17:11:30 +0000 | |
commit | 89d0366b3a1be93b42a1d1a8ac30763cd025c8a3 (patch) | |
tree | c5a8fa9ec393118bcedcb26b2d6de1ecfd7391e9 | |
parent | a4f4dfc966775d837f1ed4d8f3fd9883138ad28e (diff) | |
parent | 780be239aec59efc591b6862e0478f9bf4e3754a (diff) |
Merge "Add color contrast Settings intent" into main
-rw-r--r-- | core/java/android/provider/Settings.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index 20b4857bdd4d..51585af10f5d 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -471,6 +471,21 @@ public final class Settings { "android.settings.ACCESSIBILITY_COLOR_MOTION_SETTINGS"; /** + * Activity Action: Show settings to allow configuration of accessibility color contrast. + * <p> + * In some cases, a matching Activity may not exist, so ensure you + * safeguard against this. + * <p> + * Input: Nothing. + * <p> + * Output: Nothing. + * @hide + */ + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_ACCESSIBILITY_COLOR_CONTRAST_SETTINGS = + "android.settings.ACCESSIBILITY_COLOR_CONTRAST_SETTINGS"; + + /** * Activity Action: Show settings to allow configuration of Reduce Bright Colors. * <p> * In some cases, a matching Activity may not exist, so ensure you |