Samsung Note Layout Issues
In my application I have designed layouts for resolution 600x1024 and placed them in the layout-large folder. When I run the app on Samsung Galaxy Tab it picks up layouts from the
Solution 1:
Yes. you can create a special folder for samsung galaxy note as following:
res/drawable-sw800dp
which means smallest width is 800 dp. So gaalxy note falls in this category, but your 1024*600 tablet does not.
Solution 2:
//check your density of your phone and create an layout and place your xml file there.
for medium density which is 160dpi
res/layout-large-mdpi
for high density which is 240dpi
res/layout-large-hdpi
for xhigh density which is 320dpi
res/layout-large-xhdpi
Post a Comment for "Samsung Note Layout Issues"