-1
我有一個帶有方向的線性佈局:水平 現在我該如何將兩個文本視圖相鄰並對齊到右側?在活動的右側將兩個文本視圖彼此相鄰對齊
我有一個帶有方向的線性佈局:水平 現在我該如何將兩個文本視圖相鄰並對齊到右側?在活動的右側將兩個文本視圖彼此相鄰對齊
您可以使用RelativeLayout
和和XML這樣的:
<RelativeLayout
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right">
<TextView
android:id="@+id/foo_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/question_recline" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@id/foo_bar"
android:layout_toRightOf="@id/foo_bar"
android:text="Text" />
</RelativeLayout>
使用 android:gravity="right"
線性佈局中的文本的意見和它應該這樣做。
或者,如果你想整個線性佈局中右對齊,使用它的線性佈局像
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="right" >
.
.
</LinearLayout>
請問我對你的解決方案的工作? –