1

我有一个包含 2 个图像视图的小部件。当我调整小部件的大小时,其中一个图像视图的大小保持不变,但另一个发生了变化。我希望它们都保持相同的大小,但我不知道图像之间的区别是什么。两者都在布局中使用相同的属性定义(当然 src 除外),并且都位于 drawable-hdpi 中。Android如何确定是否调整图像大小?它需要具备一些特殊属性吗?谢谢你的帮助。

这是布局:

<LinearLayout android:layout_width="0dip" android:layout_height="fill_parent"
    android:orientation="vertical" android:layout_gravity="right"
    android:layout_weight="0.1">
    <ImageView android:id="@+id/update_button" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:src="@drawable/update_blue_small"
        android:contentDescription="@string/update_content_description"/> 
        <!-- android:text="@string/update_button_label"/> -->
    <ImageView android:id="@+id/configure_button" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:src="@drawable/update_blue_small"
        android:contentDescription="@string/config_content_description"/>
        <!-- android:text="@string/configure_button_label"/> -->
</LinearLayout>
4

1 回答 1

0

尝试android:scaleType="center"在每个 ImageViews 上进行设置。

查看 ImageView.ScaleType 的文档以获取更多详细信息。 http://developer.android.com/reference/android/widget/ImageView.ScaleType.html

于 2012-05-19T22:34:23.447 回答