Reputation: 432
I am making an app which should be for multiple Tablet screen. I have already made something like ....
1. i have make a folder named : layout-sw600dp for 1024 x 600 resolution which takes image from drawable-large folder.
2. i have make a folder named : layout-sw720dp for 1280 x 800 resolution which takes image from drawable-xlarge folder.
now i want to make it in resolution 480x800 so my question is in which folder i should put my xml file and in in which folder i should put my images ?
Please help me ....thank you in advance........
Upvotes: 0
Views: 1269
Reputation: 2192
check this in
Device defination
1) first click on Android {virtual device manager} and there click on Device defination and check for resolution and dive folder names layout-hdpi and you get screen similar it on Eclipse
Upvotes: 0
Reputation: 56925
Put your all xml files in layout-large
folder and put images in drawable-hdpi
folder.
Upvotes: 2