Android - RTL раскладка становится LTR после инфляции - PullRequest
0 голосов
/ 25 декабря 2018

У меня есть пользовательский 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, но это тоже не сработало.

Что здесь не так?Что я должен сделать, чтобы это исправить?

1 Ответ

0 голосов
/ 27 декабря 2018

Вам нужно добавить android:supportRtl="true" в AndroidManifest.xml, чтобы иметь формат RTL

...