我已在anyDensity
文件中将manifest.xml
设为true。
我将我的图像缩放为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" />
为什么当我已经将它们转换为所有dpis时,所有图像的大小都不一样?
大局: