I have an application and I put in drawable-hdpi, drawable-ldpi and drawable-mdpi a custom image which should be the icon of the application.
When the app is installed on a big screen device (4.3" or 3.7"), I can see the app icon, but when I am trying to install it on a small screen phone (HTC Wildfire), I get the default android app icon (the droid).
How can I set this?
Thank you.
There's no such thing as the default icon. Your project will be using whatever bitmap is in your project. When projects are created there are sample icons inserted, and it looks like one of those is still in your project.
Check your bitmaps. If necessary delete all of them except the xhdpi, and it will scale down to all phone sizes. When that works, put your other images back.