- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想在唯一行的左侧和右侧的单行 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/
我是一名优秀的程序员,十分优秀!