gpt4 book ai didi

android - 将 TextView 放在另一个的右侧并使其始终可见

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

将一个 TextView 放在另一个 TextView 的右边很容易,但是当基本 TextView 的宽度大于屏幕尺寸时,右边的 TextView 变得不可见。

我的 XML 布局:

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

<TextView
android:id="@+id/messages"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="1"
android:text="Messages" />

<TextView
android:id="@+id/counter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/bg_white_r30p0pl10"
android:drawableRight="@drawable/arrow_orange"
android:text="800" />

</LinearLayout>

即使基本 TextView 宽度很大,如何制作正确的 TextView 屏幕?

更新:

换句话说,我需要:

如果第一个 TextView 很短:

   |[ShotrTextView][TextView]      |

如果第一个 TextView 很长:

   |[LooooooongTextVi...][TextView]|

最佳答案

解决方案是 TableLayout 使用 shrinkColumns = 0

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

<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content" >




<TextView
android:id="@+id/messages"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:lines="1"
android:text="Messages" />

<TextView
android:id="@+id/counter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:background="@drawable/bg_white_r30p0pl10"
android:drawableRight="@drawable/arrow_orange"
android:text="800" />


</TableRow>

</TableLayout>

关于android - 将 TextView 放在另一个的右侧并使其始终可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12490196/

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