Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Customization: Advanced

Dani Mahardhika edited this page Jun 11, 2017 · 6 revisions

1. Dashboard Colors

Open colors.xml inside values folder.

2. Navigation Drawer Icons

  • ic_drawer_wallpapers.png → Wallpapers
  • ic_drawer_favorites.png → Favorites
  • ic_drawer_settings.png → Settings
  • ic_drawer_about.png → About
  • ic_drawer_donate.png → Supports Development
  • ic_drawer_share.png → Share App
  • ic_drawer_rate_review.png → Rate & Review

Those are icon name for navigation drawer icons. If you want to replace the icon, create image .png format with 114 x 114 pixels dimensions, name it exactly same as icon name provided above. Copy *.png file to drawable-xxxhdpi folder.

NOTE: You only need to create 1 icon for each with white color. Wallpaper Board will recolor it based on color provided in colors.xml.

3. Favorites Empty Icon

  • ic_wallpaper_favorite_empty.png

If you want to replace the icon, create image .png format with 640 x 640 pixels dimensions, name it exactly same as icon name provided above. Copy *.png file to drawable-xxxhdpi folder.

4. Wallpaper Loading Icon

  • ic_default_image_loading.png → Loading icon
  • ic_default_image_failed.png → Failed to load icon

If you want to replace default wallpaper loading icon, create image .png format with 512 x 512 pixels dimensions, name it exactly same as icon name provided above. Copy *.png file to drawable-xxxhdpi folder.

5. Dashboard Font

Default font used is Roboto. If you want to change it, create folder inside assets folder named fonts. You will need 4 types of font for regular, medium, bold, and logo inside wallpapers section.

  • Font-Bold.ttf → Bold font
  • Font-Medium.ttf → Medium font
  • Font-Regular.ttf → Default font
  • Font-Logo.ttf → Font used for application name inside wallpapers section

Rename your font exactly same as font name provided above. Copy to fonts folder inside assets folder.

6. Splash Screen Text

Copy and paste this

<string name="splash_screen_title">Wallpaper Board</string>

to dashboard_configurations.xml. Replace "Wallpaper Board" with your own text.

Here an example

<string name="splash_screen_title">My Own Text</string>

If you don't want to show it, just set to empty.

<string name="splash_screen_title"></string>