2-3年前,Android开发人员使用布局文件夹来指定不同屏幕尺寸的尺寸。像:-
布局(默认)
布局小(从2.0英寸到3.7英寸)
布局常规(从3.7“到4.3”)
layout-large(从4.0“到7.1”)
layout-xlarge(从7.0“到10.0”)
我的问题是,现在,什么是惯例,或者什么是我们需要按顺序放置布局的文件夹适应所有屏幕尺寸?
我在developer.android上查找了屏幕支持,但找不到足够的答案。
答案 0 :(得分:1)
我希望这对您有用
根据文档支持,可在文件夹下使用多个屏幕。
layout-sw600dp ( For 7 inch tablet)
layout-sw720dp ( For more than 7 inch tablet)
创建这些文件夹,并将其放在指定路径下
res --> layout-sw600dp --> Your xml file ( i.e res/layout-sw600dp/main_activity.xml)
res --> layout-sw720dp --> Your xml file ( i.e res/layout-sw720dp/main_activity.xml)
对于较小的屏幕,请使用默认的布局文件夹。