Skip to content Skip to sidebar Skip to footer

Targeting Multiple Screen Sizes In Android...how To?

I am creating layouts for targeting my application for all screen sizes and densities (including tablets 7,9.1 and 10 inches). I have a few queries for which I haven't been able to

Solution 1:

You only need to put the images in the right folder: using hdpi + mdpi + xhdpi + xxhdpi

ldpi is only 1% of the android devices and you should not make them.

you also can create different layouts for larger screens

read here for more info

Post a Comment for "Targeting Multiple Screen Sizes In Android...how To?"