gpt4 book ai didi

Android TextView 将文本左右对齐

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:18:30 36 4
gpt4 key购买 nike

我想要一个包含两段文本的 TextView,一段与最左边对齐,另一段与最右边对齐。我可以在两个词之间加空格,但我想知道是否有更好的技术?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_common"
android:id="@+id/LinearLayout0123">

<TextView
android:layout_width="300dp"
android:layout_height="40dp"
android:textColor="@color/Black"
android:textStyle="bold"
android:textSize="15dp"
android:paddingLeft="10dp"
android:paddingTop="10dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="10dp"
android:background="@drawable/selector_social_facebook_twitter"
android:text="Right Text Left Text" />
</LinearLayout>

最佳答案

还有一个方法:

<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_common">
<TextView
android:text="Left Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"/>
<TextView
android:text="Right Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"/>
</FrameLayout>

Layout_gravity 告诉 parent 把 child 放在哪里。在 FrameLayout 中, children 可以去任何地方并且不会被其他 child 阻挡。如果有重叠,最后添加的 child 在最上面。祝你好运!

关于Android TextView 将文本左右对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10724975/

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