gpt4 book ai didi

android - TableLayout 在一行中强制文本

转载 作者:行者123 更新时间:2023-11-30 03:18:53 27 4
gpt4 key购买 nike

我的表格布局有点问题。

我有两列

专栏 1 |第 2 列

column1 内容是静态的,表示一个属性,例如“位置”,“产品”。第二列使用适配器填充。

我的问题是 TextView 打断了 column1 中的单词。我希望 column1 的单词正好显示在一行中(强制该行不中断)。第二列的大小必须适应。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/tl"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="5dp"
android:shrinkColumns="*"
android:stretchColumns="*"

>


<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="products"
android:padding="5dp"

/>

<TextView
android:id="@+id/newID"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_weight="1"
android:text="Branche"
android:padding="5dp"/>


</TableRow>
</TableLayout>

我试着设置机器人:单线=“真”然而设备 (S3) 只显示前几个字母和...

我还尝试设置一个 layout_weight。但是我无法解决这个问题。

谢谢你的帮助

最佳答案

试试这个代码:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tl"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="5dp"
android:shrinkColumns="*"
android:stretchColumns="*">


<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:text="products"
android:padding="5dp"/>

<TextView
android:id="@+id/newID"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.7"
android:text="ancheBrrancheBraeBrancheBrancheBrancheBrancheBrancheBrancheBrancheBrancheBranche"
android:padding="5dp"/>

</TableRow>
</TableLayout>

如果您使用 layout_weight 属性,您应该记住 layout_width 必须设置为 0dp(当然在这种情况下).

关于android - TableLayout 在一行中强制文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19527610/

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