diff options
| author | 2012-11-27 22:47:37 -0500 | |
|---|---|---|
| committer | 2012-11-29 15:24:39 -0500 | |
| commit | c08cd02649c04cdc071d63841dfbc3c7c8ff85bb (patch) | |
| tree | 2eb665b4e5f82ff96cbadf4e75aa3f065bdebca9 | |
| parent | 4df6c6292b9bfa35ece3c09d5094a7f4089c5029 (diff) | |
Add constant for Daydream settings.
Bug: 7480927
Change-Id: I383170c6c543b5ffe81568d273389585498d369b
| -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 b94f0b91b5e5..b03b221dcc4e 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -626,6 +626,21 @@ public final class Settings { public static final String ACTION_NFCSHARING_SETTINGS = "android.settings.NFCSHARING_SETTINGS"; + /** + * Activity Action: Show Daydream settings. + * <p> + * In some cases, a matching Activity may not exist, so ensure you + * safeguard against this. + * <p> + * Input: Nothing. + * <p> + * Output: Nothing. + * @see android.service.dreams.DreamService + * @hide + */ + @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION) + public static final String ACTION_DREAM_SETTINGS = "android.settings.DREAM_SETTINGS"; + // End of Intent actions for Settings /** |