Меню панели приложения Android исчезает каждый раз, когда я создаю новое действие

Почему каждый раз я делаю новое занятие?

например, код:

Intent intent = new Intent(getApplicationContext(), NextActivity.class;
startActivity(intent);

пункты меню панели приложения исчезли?:(

Может кто-нибудь сказать мне, что делать, каждый раз, когда я открываю новое действие, всегда присутствуют одна и та же панель приложений и меню?

Редакция:

**activity.xml**



                <?xml version="1.0" encoding="utf-8"?>
            <android.support.v4.widget.DrawerLayout
                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:id="@+id/drawer_layout"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fitsSystemWindows="true"
                tools:openDrawer="start">

                <include
                    layout="@layout/app_bar_main"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" />

                <android.support.design.widget.NavigationView
                    android:id="@+id/nav_view"
                    android:layout_width="wrap_content"
                    android:layout_height="400dp"
                    android:layout_gravity="start"
                    android:fitsSystemWindows="true"
                    app:headerLayout="@layout/nav_header_main"
                    app:menu="@menu/activity_main_drawer" />

        </android.support.v4.widget.DrawerLayout>


**activity_intention.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:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        tools:openDrawer="start">




*I'll also include the app_bar_main.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:fitsSystemWindows="true"
            tools:context="com.example.beminix.dcar.MainActivity">

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

                <android.support.v7.widget.Toolbar
                    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_main"/>



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

Панель инструментов, которую я хочу продолжать использовать 3 иконки меню исчезли так, как заголовок

1 ответ

Это другое решение, но рабочий ток в моем проекте.use фрагмент в Activity и при вызове клика другого фрагмента использовать два фрагмента у вас будет 1 строка меню и если вы хотите действия, вы должны сделать панель действий для каждого действия

Другие вопросы по тегам