要在Android布局中支持從右到左(RTL)的布局方向,可以通過(guò)以下步驟實(shí)現(xiàn):
<application
android:label="@string/app_name"
android:supportsRtl="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="rtl">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_gravity="end" />
通過(guò)這些步驟,您可以在Android布局中支持RTL布局方向。