Android调整ImageButton的大小而不会失去图像的清晰度

时间:2013-02-04 14:36:39

标签: android android-layout imagebutton

我在我的相对布局中添加了一个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上运行时,图像按钮失去清晰度。 有没有解决方案??

1 个答案:

答案 0 :(得分:1)

默认情况下,ImageView / ImageButton会缩放图片以适合中心。

您可以使用android:scaleType = "center"进行更改。这将使图像保持其原始大小并使其保持居中。

如果图像不是对象的图片而只是矩形,请将其转换为9-patch drawable。