Другая панель инструментов меню во фрагменте с BottonNavigationView

У меня есть макет с BottonNavigationView и фрагменты. Как я могу иметь разные меню панели инструментов для каждого фрагмента? Я уже попробовал несколько вещей.

Во фрагменте я его использовал.

((AppCompatActivity) getActivity()).getSupportActionBar()

Это макет фрагмента

<FrameLayout 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"
    tools:context="com.cspm.ventas6.cspm.v_fragments.f_clientes"
    android:focusable="false">

    <LinearLayout
        android:id="@+id/con_listview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:descendantFocusability="blocksDescendants"
        android:focusable="false">

  <android.support.design.widget.AppBarLayout
        android:id="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar">

        <!-- Toolbar is the actual app bar with text and the action items -->
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:layout_scrollFlags="scroll|enterAlways" />
    </android.support.design.widget.AppBarLayout>

        <ListView
            android:id="@+id/client_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:divider="@null" />
    </LinearLayout>
</FrameLayout>

1 ответ

В свой фрагмент добавьте следующие два метода.

@Override
public void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // tells the fragment that fragment will use toolbar's options menu
    setHasOptionsMenu(true);
}

/**
* this method is called when fragment prepares options menu, 
* simply, inflate your menu and call super
*/
@Override
public void onPrepareOptionsMenu(Menu menu) {
    getActivity().getMenuInflater().inflate(R.menu.menu_res_id, menu);
    super.onPrepareOptionsMenu(menu);
}

+ Изменить menu_res_id с вашим ресурсом меню.

И, если вы хотите удалить только элемент из текущего меню, то замените строку

getActivity().getMenuInflater().inflate(R.menu.menu_res_id, menu);

с

menu.findItem(R.id.action_search).setVisible(false);
Другие вопросы по тегам