我有一个包含自定义行的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将拉伸行高,我将有一个非常高,它看起来不漂亮..
如何自动调整图像大小以适应行并与按钮大小相同?
谢谢! (如果不清楚,我可以附上图片)
答案 0 :(得分:2)
要使ImageView与按钮的高度相同,请将其与按钮的顶部和底部对齐。这将保证高度匹配。
<LinearLayout
android:id"@+id/images_layout"
android:layout_alignTop="@id/bonus"
android:layout_alignBottom="@id/bonus"
android:orientation="horizontal"
android:layout_toRightOf="@id/name" >
...
</LinearLayout>
希望这有帮助。
答案 1 :(得分:0)
试试这个:
<LinearLayout
android:id="@+id/images_layout"
android:layout_width="wrap_content"
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="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/live"
/>
</LinearLayout>