我有一个带有自定义行的 Listview,其中包含:
Button TextView ImageView ImageView Button
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingBottom="20dp"
android:paddingTop="20dp" >
<Button
android:id="@+id/bonus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:background="@drawable/green_button"
android:layout_marginLeft="2dp"
android:text="Test" />
<TextView
android:id="@+id/name"
android:layout_width="100dp"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_toRightOf="@+id/bonus"
android:textSize="16sp"
android:textStyle="bold" />
<LinearLayout
android:id="@+id/images_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/missed"
android:background="#ffff0000"
android:layout_toRightOf="@+id/name"
android:orientation="horizontal" >
<ImageView
android:layout_height="match_parent"
android:layout_width="match_parent"
android:src="@drawable/live"
/>
</LinearLayout>
<Button
android:id="@+id/missed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:background="@drawable/red_button"
android:layout_marginRight="2dp"
android:text="test2" />
</RelativeLayout>
所以在一个小屏幕上,例如(Wildfire),两个按钮和文本看起来不错,但我的图片尺寸为 72x72 会拉伸行高,我会有一个非常高的,看起来不太好..
如何自动调整图像大小以适应行并与按钮大小相同?
谢谢!(如果不清楚,我可以附上图片)