Please help me with a couple general questions about drawables.
1) If I have a general wallpaper app (not live wallpaper), do I need to include the images in all three drawable folders? Even if I do not change the image?
2) What command can I use to not allow tablets to use the app? I do not have a layout yet for tablets. But I do want 4.0 users with handsets to use the app.
Thanks!
I think you might want to use something like this to find out whether your application is running on a phone or not. The code is meant to detect whether it’s running on an emulator but I think it should work for tablets as well.
As far as the first question is concerned I usually just put my images in the res/drawable folder and access them via
Or you might want to have a look at what has been written here if you would like to add multi screen support.