0

How to get my live wallpaper icon in Livewallpaper list.

I am developing a live wallpaper. After running the application i cannot see icon when selecting livewallpaper. please see picture below

I can see the Text Flowers HD Wallpaper but not icon.

Thanks for you help in advance

enter image description here

Rajesh
  • 380
  • 5
  • 13

2 Answers2

0

Use the android:thumbnail attribute on the wallpaper element in your xml as such:

android:thumbnail="@drawable/thumb"
Anthony Atkinson
  • 3,101
  • 3
  • 20
  • 22
0

I think your are missing icon attribute in Manifest file

 <application 
      android:label="@string/app_name" 
      android:icon="@drawable/icon">

or might be in used (hdpi-mdpi-ldpi) drawble resource folder image is not present or changed.

ZAQ
  • 11
  • 2