0

我已在我的文件中设置anyDensity为 true 。manifest.xml

我已将图像缩放为 ldpi、mdpi、hdpi、xhdpi 和 xxhdpi。它们当然都在各自的文件夹中。

这是我的问题的图像:

屏幕一

我必须制作所有不同类型的布局吗?例如layout-large,等等等等?

这是我的xml:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<Button
    android:id="@+id/bBaron"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/baron" />

<Button
    android:id="@+id/bDragon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/dragon" />

<Button
    android:id="@+id/bBBlue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/blue" />

<Button
    android:id="@+id/bPBlue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/bluecopy" />

<Button
    android:id="@+id/bBRed"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/red" />

<Button
    android:id="@+id/bPRed"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/redcopy" />

<TextView
    android:id="@+id/tvTimerDisplay"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="00:00"
    android:visibility="invisible"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<Button
    android:id="@+id/bReset"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="50dp"
    android:layout_height="50dp"
    android:text="Reset"
    android:visibility="invisible" >
</Button>

<ImageView
    android:id="@+id/ivBackground"
    android:layout_width="466dp"
    android:layout_height="672dp"
    android:scrollbars="none"
    android:src="@drawable/summonersrift" />

当我已经将它们转换为那里的所有 dpi 时,为什么所有图像的大小都不一样?

对于大图:

  • 低密度脂蛋白:364 X 387
  • 分辨率:486 X 516
  • 高清:729 X 774
  • xhdpi: 972 X 1032
  • xxhdpi: 1458 X 1548
4

0 回答 0