diff options
| -rw-r--r-- | api/system-current.txt | 7 | ||||
| -rw-r--r-- | core/java/android/app/WallpaperColors.java | 8 |
2 files changed, 12 insertions, 3 deletions
diff --git a/api/system-current.txt b/api/system-current.txt index cb1e96a2bc82..79648a9c98e4 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -537,6 +537,13 @@ package android.app { method public void onVrStateChanged(boolean); } + public final class WallpaperColors implements android.os.Parcelable { + ctor public WallpaperColors(android.graphics.Color, android.graphics.Color, android.graphics.Color, int); + method public int getColorHints(); + field public static final int HINT_SUPPORTS_DARK_TEXT = 1; // 0x1 + field public static final int HINT_SUPPORTS_DARK_THEME = 2; // 0x2 + } + public final class WallpaperInfo implements android.os.Parcelable { method public boolean supportsAmbientMode(); } diff --git a/core/java/android/app/WallpaperColors.java b/core/java/android/app/WallpaperColors.java index ace814ab4fe0..38a98d3c8807 100644 --- a/core/java/android/app/WallpaperColors.java +++ b/core/java/android/app/WallpaperColors.java @@ -18,7 +18,7 @@ package android.app; import android.annotation.NonNull; import android.annotation.Nullable; -import android.annotation.UnsupportedAppUsage; +import android.annotation.SystemApi; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Color; @@ -56,6 +56,7 @@ public final class WallpaperColors implements Parcelable { * eg. A launcher may set its text color to black if this flag is specified. * @hide */ + @SystemApi public static final int HINT_SUPPORTS_DARK_TEXT = 1 << 0; /** @@ -64,6 +65,7 @@ public final class WallpaperColors implements Parcelable { * eg. A launcher may set its drawer color to black if this flag is specified. * @hide */ + @SystemApi public static final int HINT_SUPPORTS_DARK_THEME = 1 << 1; /** @@ -234,7 +236,7 @@ public final class WallpaperColors implements Parcelable { * @see WallpaperColors#fromDrawable(Drawable) * @hide */ - @UnsupportedAppUsage + @SystemApi public WallpaperColors(@NonNull Color primaryColor, @Nullable Color secondaryColor, @Nullable Color tertiaryColor, int colorHints) { @@ -349,7 +351,7 @@ public final class WallpaperColors implements Parcelable { * @return True if dark text is supported. * @hide */ - @UnsupportedAppUsage + @SystemApi public int getColorHints() { return mColorHints; } |