Фрагмент активности с меню на панели инструментов - PullRequest
0 голосов
/ 08 октября 2018

У меня есть фрагмент действия с пользовательской панелью инструментов, как показано ниже.

<android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorWhite"
            android:minHeight="?attr/actionBarSize"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center"
                android:orientation="horizontal">


                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:orientation="horizontal"

                    >

                    <RelativeLayout
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:orientation="horizontal"
                        android:visibility="visible"
                        android:weightSum="10">


                        <TextView
                            android:id="@+id/toolbarTitle"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:fontFamily="@font/avenir"
                            android:gravity="center"
                            android:text="TEST"
                            android:textColor="@color/colorFontTitle"
                            android:textSize="19sp"
                            android:visibility="visible" />

                        <SearchView
                            android:id="@+id/simpleSearchView"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_weight="2"
                            android:layout_alignParentRight="true"
                            android:gravity="right" />
                    </RelativeLayout>
                </LinearLayout>

                <ImageView
                    android:id="@+id/toolbarImg"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:src="@drawable/logo"
                    android:visibility="visible" />
            </LinearLayout>


        </android.support.v7.widget.Toolbar>

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

Ниже у меня есть структура просмотра и вкладка структуры

Мне нужно добавить пункт меню с меню SearchView вконец панели инструментов, но, кажется, не виден в моем фрагменте.

Поэтому я добавил SearchView на самой панели инструментов, но он перекрывается с текстом и не скрывает его, как в меню.Как я могу преодолеть это во Фрагменте.

...