2

我一直在尝试为一组设备设置屏幕分辨率,我已经查看了所有答案,并且根据我的理解,如果我创建一个 res/layout-normal、res/layout-large 等等,我可以在那里放置调整后的布局该应用程序将自动加载它们。

这怎么没有发生...有人可以解释一下在我创建布局和布局文件夹并允许在我的 XML 中使用所有大小之后该怎么做(尽管我认为默认值是所有大小)。

谢谢你!

4

1 回答 1

2

它只是一个例子:

设备分辨率-

res/values/dimens.xml(default)

res/values-ldpi/dimens.xml (240*320 and nearer resolution)

res/values-mdpi/dimens.xml (320*480 and nearer resolution)

res/values-hdpi/dimens.xml (480*800 and nearer resolution)

res/values-xhdpi/dimens.xml (720*1280 Samsung s3,Micromax HD canvas etc)

res/values-xxhdpi/dimens.xml (1080*1920 samsung s4,HTC one etc)

平板电脑分辨率-

res/values-sw600dp/dimens.xml (600*1024)

res/values-sw720dp-land/dimens.xml (800*1280)

<TextView
    android:id="@+id/textView1"
    style="@android:style/TextAppearance.Small"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Sample Text - Small" />
<TextView
    android:id="@+id/textView2"
    style="@android:style/TextAppearance.Medium"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Sample Text  - Medium" />
<TextView
    android:id="@+id/textView3"
    style="@android:style/TextAppearance.Large"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Sample Text  - Large" />
于 2013-09-28T10:21:47.120 回答