0
爲什麼即使佈局:高度與它的父級匹配,以下佈局中的灰色框(transaction_amount)也不會展開爲可用的全部空間。相對佈局中的TextView不擴展以填充可用空間
<TextView android:id="@+id/transaction_amount"
android:layout_width="120dp"
android:layout_height="match_parent"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Large"
android:textColor="@android:color/primary_text_light"
android:background="@drawable/rounded_rectangle"
tools:text="100"/>
<TextView
android:id="@+id/transaction_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/transaction_amount"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Medium"
android:textColor="@android:color/secondary_text_light"
tools:text="Mast Kalandar Dinner"/>
<TextView
android:id="@+id/shared_bw_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@id/transaction_name"
android:layout_toRightOf="@+id/transaction_amount"
android:layout_below="@id/transaction_name"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small"
android:textColor="@android:color/secondary_text_light_nodisable"
android:text="Shared Between"/>
<TextView
android:id="@+id/shared_bw_csv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/shared_bw_label"
android:layout_alignBaseline="@id/shared_bw_label"
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small"
android:textColor="@android:color/secondary_text_light_nodisable"
tools:text="Ashu, Amol"/>
嘗試改變高度match_parent – CENT1PEDE 2014-09-28 19:52:53
在你提到你做的「寬度」 match_parent你的問題,但空的空間被引起高度的,那麼你應該通過改變高度解決問題。 – CENT1PEDE 2014-09-28 19:55:32
抱歉,我打算編寫layout_height。在代碼中,layout_height是match_parent – 2014-09-28 20:30:45