Android - RTL 布局在 inflation 后变为 LTR
Android - RTL layout becomes LTR after inflation
我的 Android
项目中有一个自定义 Action Bar
XML
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layoutDirection="rtl"
android:orientation="horizontal"
android:textDirection="rtl">
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Some Text"
android:textColor="@color/white" />
</LinearLayout>
现在,如果尝试像这样加载和显示这个 Action Bar
:
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setCustomView(R.id.custom_action_bar);
布局加载为 RTL
,文本方向为 RTL
,一切正常,但我想使标题动态化,所以我决定 inflate
布局文件变成 View
,然后像这样更改 TextView
的文本:
View customActionBar = LayoutInflater.from(this)
.inflate(R.layout.custom_action_bar, null);
TextView actionBarTitle = customActionBar.findViewById(R.id.tv_name);
actionBarTitle.setText("Any Text");
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setCustomView(customActionBar);
但随后布局和文字方向变为 LTR
。我试图以编程方式将方向设置为 RTL
,但这也不起作用。
What is wrong here? What should I do to fix it?
您需要在 AndroidManifest.xml 中添加 android:supportRtl="true"
以获得 rtl 布局
我的 Android
项目中有一个自定义 Action Bar
XML
布局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layoutDirection="rtl"
android:orientation="horizontal"
android:textDirection="rtl">
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Some Text"
android:textColor="@color/white" />
</LinearLayout>
现在,如果尝试像这样加载和显示这个 Action Bar
:
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setCustomView(R.id.custom_action_bar);
布局加载为 RTL
,文本方向为 RTL
,一切正常,但我想使标题动态化,所以我决定 inflate
布局文件变成 View
,然后像这样更改 TextView
的文本:
View customActionBar = LayoutInflater.from(this)
.inflate(R.layout.custom_action_bar, null);
TextView actionBarTitle = customActionBar.findViewById(R.id.tv_name);
actionBarTitle.setText("Any Text");
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setDisplayShowCustomEnabled(true);
getSupportActionBar().setCustomView(customActionBar);
但随后布局和文字方向变为 LTR
。我试图以编程方式将方向设置为 RTL
,但这也不起作用。
What is wrong here? What should I do to fix it?
您需要在 AndroidManifest.xml 中添加 android:supportRtl="true"
以获得 rtl 布局