singleLine を持つ単純な TextView があります。高さを match_parent/fill_parent に設定したいのですが、Android の動作は wrap_content のみです。
TextView がすべての高さを取るようにする方法はありますか?
Tkx
編集 :
これは私が得るものです:
と私のレイアウト:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/date"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center"
android:paddingLeft="13dp"
android:paddingRight="3dp"
android:textColor="@android:color/white"
android:textStyle="bold" />
[...]
</RelativeLayout>