将 FILL_PARENT 宽度设置为位于 TableRow 内部的 TextView
我在 TableRow 内有一个 TextView。有什么方法可以为此 TextView 设置 FILL_PARENT 宽度吗?
已编辑:当我在 TableRow 中有一个背景图像时,不会填充
<TableLayout android:id="@+id/tableLayout1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TableRow android:layout_height="wrap_content" android:id="@+id/tableRow1"
android:layout_width="fill_parent" android:background="@drawable/myImage">
<TextView android:text="I wrapped!" android:id="@+id/textView1"
android:layout_width="fill_parent" android:background="@color/white"
android:layout_height="wrap_content"></TextView>
</TableRow>
</TableLayout>
I have a TextView inside of the TableRow. Is there any way to set a FILL_PARENT width to this TextView?
Edited: Doesn't FILL when I have a backgroundImage to the TableRow
<TableLayout android:id="@+id/tableLayout1"
android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<TableRow android:layout_height="wrap_content" android:id="@+id/tableRow1"
android:layout_width="fill_parent" android:background="@drawable/myImage">
<TextView android:text="I wrapped!" android:id="@+id/textView1"
android:layout_width="fill_parent" android:background="@color/white"
android:layout_height="wrap_content"></TextView>
</TableRow>
</TableLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的链接回答了您的问题。
FILL_PARENT
(在 API 级别 8 及更高版本中重命名为MATCH_PARENT
)您的
TextView
应自动为FILL_PARENT< /code> 是
MATCH_PARENT
。Your link answers your question.
FILL_PARENT
(renamedMATCH_PARENT
in API Level 8 and higher)Your
TextView
should automatically beFILL_PARENT
which isMATCH_PARENT
.