gpt4 book ai didi

java - 不显示全文的Textview

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

我正在使用 TableLayout 和 TableRow 创建一个简单的布局,其中包含两个 TextView。这是代码的一部分。

<TableLayout 
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0">

<TableRow android:id="@+id/myTableRow">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="Short description"/>

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="Large description"/>

</TableRow>

问题是,如果 TextView1 中有长文本,则不会显示全文。如何在 TextView1 中显示全文?

最佳答案

尝试更新 XML,你给出的问题...可能是你想要做的。

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<TableRow android:id="@+id/myTableRow" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="15dip"
android:text="Short description" />

<TextView
android:id="@+id/textView1"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:padding="15dip"
android:text="Large description" />
</TableRow>

</TableLayout>

关于java - 不显示全文的Textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21834285/

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