I\'m creating an application which works for all types of screens, but I\'m having problems while creating layouts for the Samsung Galaxy S4 1080*1920 (5 inch screen).
S
If you want to have a layout for your S4, you need to use the values-sw360dp folder.
values-sw360dp
The conversion is like this: px * 160 / dpi. In your case: 1080 * 160 / 480 = 360.
px * 160 / dpi
1080 * 160 / 480 = 360
But anyway, your layout should work on all devices, not only the S4.