Android Textview - 字母和数字对齐

时间:2013-07-22 10:03:02

标签: android string textview alignment

我想在TextView中显示长字符串,并且字符串(字母)的一部分在右侧,而数字在左侧显示,如何在右边显示数字?

非常感谢。

1 个答案:

答案 0 :(得分:1)

试试这个:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/numbers"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="left" />

    <TextView
        android:id="@+id/letters"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="right" />
</LinearLayout>