Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Drawable folder for 8 inch tablets

I am working in an android application and I want to support my application in all devices. But I don't know from which drawable folder 8 inch tablet takes images.

"drawable-mdpi" for mobiles, containing 320px-width images   
"drawable-hdpi" for mobiles, containing 480px-width images  
"drawable-xhdpi" for mobiles, containing 720px-width images  
"drawable-sw600dp" for 7'' tablets, containing 600px-width images  
"drawable-sw720dp" for 10'' tablets, containing 720px-width images    
 ????             for 8'' tablets
like image 494
Arun Avatar asked Sep 19 '25 09:09

Arun


2 Answers

enter image description here

You can use : "drawable-sw720dp" for 10'' tablets, containing 720px-width images" for the 8" Tablet .

For more info you can refer here , as 8" is reside between 7-10 Range so that you can use 10" drawable folder

http://developer.android.com/guide/practices/screens_support.html

like image 145
GOLDEE Avatar answered Sep 21 '25 00:09

GOLDEE


"drawable-sw600dp" for 7'' tablets, containing 600px-width images

"drawable-sw600dp" is the folder that applies the drawable properties of device with minimum 600dp width.

So you dont need to worry about it.The android system will automatically suites drawable from sw600dp to 8 Inch Tablets

Have a Nice Day ....

like image 28
Venkatesh S Avatar answered Sep 21 '25 00:09

Venkatesh S