gpt4 book ai didi

android - 线性布局 : how to place a view below/right of a fill_parent view?

转载 作者:行者123 更新时间:2023-11-29 14:40:41 24 4
gpt4 key购买 nike

我想在左侧有一个填充空间的 TextView,在右侧有一个右对齐的 TextView。我试过摆弄重力、layout_gravity,并使第二个 TextView 也成为 fill_parent,但是只要第一个是 fill_parent,第二个 TextView 总是最终不可见。我注意到如果 LinearLayout 是垂直的,也会出现同样的问题。怎么办?

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="fill_horizontal"
android:orientation="horizontal" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Left Side"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Right side"
android:background="#ff606060"/>
</LinearLayout>

目标:Android 2.2

最佳答案

我想这就是你想要的。如果您不想让文本换行,您还可以将 singleLine(和 ellipsize)添加到左 View 。

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Left Side"
android:layout_weight="1"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Right side"
/>
</LinearLayout>

关于android - 线性布局 : how to place a view below/right of a fill_parent view?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11019456/

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