溢出按钮消失了

时间:2016-09-01 21:42:25

标签: android android-appbarlayout

有点奇怪的错误。我在开始设置导航抽屉应用程序的溢出按钮,然后转到其他部分。一路上的某个地方。在某些时候,我必须改变一个设置,使它消失,我不知道我做了什么。我的代码如下。

Route::get( '/X{id}/Y', function ($id) {
   // do something
   return view ('pages.view') -> withVars ($var);
});

我的溢出物品

<?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.tble.brgo.BRGO">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        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:titleTextColor="@color/colorPrimaryDark"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

<FrameLayout
    android:id="@+id/fragmentcontainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

</FrameLayout>

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

0 个答案:

没有答案