Drawable folder for 8 inch tablets

后端 未结 4 1937
一整个雨季
一整个雨季 2021-01-06 11:45

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

4条回答
  •  一生所求
    2021-01-06 12:30

    The qualifiers hdpi,xhdpi,xxhdpi describes the screen density of the device, not the size of screen. From the official doc

                The better practice is to put the following drawables
               // for Phones
                drawable-ldpi
                drawable-mdpi
                drawable-hdpi
    
              //for 7 inch tablets
                  drawable-large-mdpi
                  drawable-large-hdpi(for Nexus 7)
    
             // for 10 inch tablets
                 drawable-xlarge-mdpi
    

提交回复
热议问题