gpt4 book ai didi

android - 如何在一行 TextView 的左右两侧对齐文本?

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

我想在唯一行的左侧和右侧的单行 TextView 中设置文本。为此,我使用了 SpannableStringBuilder。

这是一个例子:

mSpannableStringBuilder.append("leftright");
mSpannableStringBuilder.setSpan(new AlignmentSpan.Standard(Alignment.ALIGN_NORMAL), 0, 3, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
mSpannableStringBuilder.setSpan(new AlignmentSpan.Standard(Alignment.ALIGN_OPPOSITE), 4, 8, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
mTextView.setText(mSpannableStringBuilder, BufferType.SPANNABLE);

但是没用...有什么建议吗?谢谢你

最佳答案

我只是在xml文件中使用如下

<RelativeLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:gravity="center_horizontal"
>
<TextView
android:text="AAA:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#3b5998"
android:layout_marginRight="5px"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
/>
<TextView
android:id="@+id/maine"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Not Set"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#0040FF"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"<br/>
/>
</RelativeLayout>

关于android - 如何在一行 TextView 的左右两侧对齐文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11071599/

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