320dp为Android布局

时间:2016-10-28 11:10:01

标签: android android-linearlayout

在Android中,可以将线性布局的宽度设置为320dp吗?一些小屏幕可以大吗?

在互联网上有人说320dp是最小的安卓屏幕,但我只是想问一下是否有人测试了这个。感谢

这个问题与android dp size for LinearLayout有关,但没有人回答这个问题所以我想尝试以不同的方式提出问题

2 个答案:

答案 0 :(得分:0)

对于小屏幕和大屏幕,您可以将多布局文件用作docs。 我们有2个位置(横向和纵向)和2个尺寸(正常和大)的屏幕。因此,有4种类型的布局。

res/
    layout/              # default (portrait)
        main.xml
    layout-land/         # landscape
        main.xml
    layout-large/        # large (portrait)
        main.xml
    layout-large-land/   # large landscape
        main.xml

您必须在其中创建具有相同名称的布局文件。

答案 1 :(得分:0)

您应该尝试<httpRuntime targetFramework="4.6.2" /> vs match_parent

,而不是使用固定大小
  

在互联网上人们说320dp是最小的安卓屏幕

我知道最小的设备是wrap_content,这意味着240dp是最小的设备尺寸。

为清晰起见,请参阅以下链接

What is the difference between match_parent and fill_parent?

Supporting Different Screen Sizes

http://www.randomlytyping.com/blog/2014/2/9/matchparent-vs-fillparent

ViewGroup.LayoutParams

<强>更新

最小的设备可以具有240dp x 320dp = 180px x 240px

的分辨率

enter image description here