Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5864521f authored by Clark Scheff's avatar Clark Scheff
Browse files

Themes: Style, boot animation, and wallpaper previews

Change-Id: I2b367bf5336c03f2a4972a05b68922065cd4a701
parent e452f093
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
@@ -487,5 +487,43 @@ public class ThemesContract {
         * <P>Type: BLOB (bitmap)</P>
         */
        public static final String ICON_PREVIEW_4 = "icon_preview_4";

        /**
         * Cached preview of UI controls representing the theme's style
         * <P>Type: BLOB (bitmap)</P>
         */
        public static final String STYLE_PREVIEW = "style_preview";

        /**
         * Cached thumbnail of the theme's boot animation
         * <P>Type: BLOB (bitmap)</P>
         */
        public static final String BOOTANIMATION_THUMBNAIL = "bootanimation_thumbnail";

        /**
         * Cached thumbnail of the theme's wallpaper
         * <P>Type: BLOB (bitmap)</P>
         */
        public static final String WALLPAPER_THUMBNAIL = "wallpaper_thumbnail";

        /**
         * Cached preview of the theme's wallpaper which is larger than the thumbnail
         * but smaller than the full sized wallpaper.
         * <P>Type: BLOB (bitmap)</P>
         */
        public static final String WALLPAPER_PREVIEW = "wallpaper_preview";

        /**
         * Cached thumbnail of the theme's lockscreen wallpaper
         * <P>Type: BLOB (bitmap)</P>
         */
        public static final String LOCK_WALLPAPER_THUMBNAIL = "lock_wallpaper_thumbnail";

        /**
         * Cached preview of the theme's lockscreen  wallpaper which is larger than the thumbnail
         * but smaller than the full sized lockscreen wallpaper.
         * <P>Type: BLOB (bitmap)</P>
         */
        public static final String LOCK_WALLPAPER_PREVIEW = "lock_wallpaper_preview";
    }
}