我想在TextView中显示长字符串,部分字符串(字母)在右侧,数字出现在左侧,如何在右侧显示数字?
多谢。
尝试这个:
<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>