我在相对布局中添加了一个 ImageButton,我的 xml 代码是
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomePageActivity" >
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="132dp"
android:background="@null"
android:scaleType="fitXY"
android:src="@drawable/book" />
</RelativeLayout>
由于宽度和高度是 wrap_content 的日志,因此图像很清晰,但是当我指定更大的宽度和高度时,例如:
android:layout_width="80dp"
android:layout_height="80dp"
然后,在 AVD 上运行时,图像按钮会失去清晰度。有什么解决办法吗??