Android supporting multiple resolution with multiple layout folder

前端 未结 4 1244
萌比男神i
萌比男神i 2020-12-01 20:40

Now I\'m supporting multiple resolution with multiple layout folders. I\'m using android development studio and I made 3 different folders.

layout
layout-lar         


        
4条回答
  •  死守一世寂寞
    2020-12-01 21:03

    U should use:

    res/layout/main_activity.xml           # For handsets (smaller than 480dp available width)
    res/layout-sw480dp/main_activity.xml   # For phones (480dp wide and bigger)
    res/layout-sw600dp/main_activity.xml   # For 7” tablets (600dp wide and bigger)
    res/layout-sw720dp/main_activity.xml   # For 10” tablets (720dp wide and bigger)
    

提交回复
热议问题