垂直填補我把一個ImageView
和TextView
被用作列表項的RelativeLayout
內,並希望ImageView
用的TextView
行號垂直增長。可拖動的ImageView
是豎條的圖片。如何使的ImageView內的RelativeLayout
通過以下佈局,認爲它在Eclipse的佈局視圖中看起來很好,ImageView
在運行時沒有填充RelativeView
的高度。相反,它始終保持原始圖片的高度。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView android:id="@+id/iv"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:src="@drawable/vbar"
android:adjustViewBounds="false"
android:scaleType="fitXY"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="false"
android:layout_toRightOf="@id/iv"
android:layout_alignParentBottom="true" />
</RelativeLayout>
爲什麼如我所料(或如在Eclipse佈局視圖)它不工作?
如果您使用`android:background`而不是`android:src`它會改變什麼嗎? – Jakar 2012-04-06 05:34:42