以下を含むカスタム行を持つリストビューがあります。
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) 小さな画面では、2 つのボタンとテキストは見栄えがしますが、72x72 のサイズの画像は行の高さを伸ばし、非常に背が高くなり、見栄えがよくありません..
行に合わせてボタンと同じサイズになるように画像のサイズを自動的に変更するにはどうすればよいですか?
ありがとうございました!(わかりにくい場合は画像を添付できます)