我的Action Bar
项目中有一个自定义的XML
Android
布局文件:
<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
,但这也不起作用。
这是怎么了?我该怎么做才能解决它?
答案 0 :(得分:1)
您需要在AndroidManifest.xml中添加android:supportRtl="true"
才能具有rtl布局