Как исправить кнопку «Отмена и голос слева» в строке поиска RTL - PullRequest
3 голосов
/ 17 июня 2019

Я разработал RTL приложение для Android.Я реализовал Панель действий , которая содержит Панель поиска .но кнопки Cancel и Voice находятся на справа текста.

Как вы знаете, кнопки отмены и голосового вызова должны быть на слева текста в RTL.

RTL Search Bar RTL Search Bar

Примечание:

  • Я добавил layoutDirection & textDirection для всех AppBarLayout , Панель инструментов & SearchView .

  • Я добавил android:supportsRtl="true" в Манифест тоже.

  • Я установил Gravity в End.

Макеты:

app_bar_home.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layoutDirection="rtl"
    tools:context=".home.Home">

    <android.support.design.widget.AppBarLayout
        android:layoutDirection="rtl"
        android:textDirection="rtl"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:layoutDirection="rtl"
            android:textDirection="rtl"
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_home" />

</android.support.design.widget.CoordinatorLayout>

menu_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<menu
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <item
        android:id="@+id/menu_search"
        android:icon="@android:drawable/ic_menu_search"
        android:title="@string/search_hint"
        app:showAsAction="always|collapseActionView"
        app:actionViewClass="android.support.v7.widget.SearchView"/>
</menu>

searchable.xml:

<?xml version="1.0" encoding="utf-8"?>
<searchable
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:label="@string/app_name"
    android:hint="@string/search_hint"/>

Manifest:

<activity
    android:name=".home.Home"
    android:label="@string/app_name"
    android:theme="@style/AppTheme.NoActionBar">
    <intent-filter>
        <action android:name="android.intent.action.SEARCH" />
    </intent-filter>
    <meta-data
        android:name="android.app.searchable"
        android:resource="@xml/searchable" />
</activity>

Итак, как я могу изменить положение кнопок SearchBar слева?

1 Ответ

0 голосов
/ 17 июня 2019

Вы можете установить rtl Diration только для панели инструментов.

<androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:layoutDirection="rtl"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:popupTheme="@style/AppTheme.PopupOverlay">

и настройте свою панель инструментов.

...