如何在 android studio 中为 multiResolution 定义维度

how to define dimens for multiResolution in android studio

我使用Android Studio 1.2.2版本

我想在多分辨率中构建应用程序 所以我对某些分辨率使用了 dimens.xml,但效果不佳,并且总是显示 mdpi 资源

在AndroidManifest.xml中我输入:

    <supports-screens
        android:smallScreens="true"
        android:normalScreens="true"
        android:largeScreens="true"
        android:xlargeScreens="true"
        android:anyDensity="true"
        android:resizeable="true"/>

dimens.xml 四种分辨率,已在 Samsung Galaxy Tab2 10.1"(密度 4)上测试,但效果不佳 那么这个项目有什么问题吗?

已解决,dimens.xml 应设置为整个分辨率为

密度以编程方式显示 4,但在 xml 中应为 sw720dp 设置值。

但是你应该添加

<supports-screens 
  android:smallScreens="true"
  android:normalScreens="true"
  android:largeScreens="true"
  android:xlargeScreens="true"
  android:anyDensity="true"
  android:resizeable="true"/>

在你的 manifest.xml

查看这篇文章multiple-screen-support-in-android-using-android-studio