我有一個簡單的TextView與單線。 我想設置高度爲match_parent/fill_parent,但Android的行爲僅限於wrap_content。TextView高度不匹配_parent/fill_parent
有沒有辦法強制將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>
有同樣的問題,你最終與其他或此方案解決了什麼? – htafoya 2013-06-25 21:53:53