gpt4 book ai didi

Android TableRow child 问题

转载 作者:太空宇宙 更新时间:2023-11-03 11:38:14 24 4
gpt4 key购买 nike

我有一个 TableLayout,目前有 3 行,每一行都有一个 child ,一个 TextView。我的问题是 TextViews 宽度没有按应有的方式"match_parent"。我遵循了不为它们定义高度和宽度的过程(like the documentation says),但由于某种原因问题仍然存在。

我打开了 hierarchyviewer 并查看了值,TableRow 填充了它应该的宽度,但 TextView 填充了宽度不填充行,它只是包装内容。完整的 xml 布局如下,有人有什么想法吗?

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:background="@drawable/textlines"
android:text="@string/text1_string"
android:textColor="#000000"
android:padding="5dp">
</TextView>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:background="@drawable/textlines"
android:text="@string/text1_string"
android:textColor="#000000"
android:padding="5dp">
</TextView>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:background="@drawable/textlines"
android:text="@string/text1_string"
android:textColor="#000000"
android:padding="5dp">
</TextView>
</TableRow>
</TableLayout>

我还将包含 @drawable/textlines 的 xml 文件。也许问题在那里? (textlines 代码取自此处提供的关于边界问题的解决方案)我非常理解它,我认为它不会影响我的问题,但我可能是错的。无论如何,它在这里:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#FF000000" />
<solid android:color="#FFDDDDDD" />

</shape>
</item>

<item android:top="1dp" android:bottom="1dp">
<shape
android:shape="rectangle">
<stroke android:width="1dp" android:color="#FFDDDDDD" />
<solid android:color="#00000000" />
</shape>
</item>
</layer-list>

最佳答案

我不知道为什么会这样,但您可以通过添加以下内容来避免该问题:

android:layout_weight="1"

给您的 child TextView,或者通过添加:

android:stretchColumns="0"

到你的父 TableLayout

关于Android TableRow child 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10231026/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com