Skip to content

Change Wallpaper Settings

Lumiq Creative edited this page Jul 15, 2020 · 2 revisions

app/src/main/res/values/frames_setup.xml contains wallpaper settings.

Download Restrictions

allow_immediate_downloads defines whether to allow new users to download wallpapers immediately or disable downloads for 3 hours.

  • true allows immediate wallpaper downloads.
  • false locks downloads for 3 hours after install.
<bool name="allow_immediate_downloads">true | false</bool>

Card and Row Footers

You can pick between tinted and neutral card and row footers via enable_colored_tiles.

  • true uses tinted footers.
  • false uses neutral footers.
<bool name="enable_colored_tiles">true | false</bool>

Collection Row Footers

Collection rows can use compact or full-height footers. Set this via enable_filled_collection_preview.

  • true uses full-height footers.
  • false uses compact footers.
<bool name="enable_filled_collection_preview">true | false</bool>

Wallpaper Palette

show_wallpaper_palete_details defines whether to show a grid of leading wallpaper colours in the Details sheet.

  • true shows the wallpaper colour palette in Details.
  • false hides the wallpaper colour palette from Details.
<bool name="show_wallpaper_palette_details">true | false</bool>

Thumbnail Placeholders

You can set placeholder images for unloaded collection and wallpaper thumbnails. Create two drawables for wallpaper and collection thumbnails in app/src/main/drawable and enter their names (no file extensions) inside wallpapers_placeholder and collections_placeholder accordingly.

<string name="wallpapers_placeholder"></string>
<string name="collections_placeholder" translatable="false"></string>