如果以前没有打开抽屉,汉堡包不会切换

时间:2015-11-02 13:53:57

标签: android navigation-drawer android-toolbar android-appbarlayout android-navigation-drawer

我在AppBarLayout中有一个v7工具栏,当我尝试从汉堡包图标切换它时,它不会切换抽屉,除非我打开它,然后将汉堡包正常工作。

下面的代码包含布局内容和onCreate中的工具栏相关代码:

<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=".MainActivity">

    <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="@color/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay"/>

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

    <include layout="@layout/content_main" />
toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);    
drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
toggle = new ActionBarDrawerToggle(this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();   

我也试图让它自己添加一个NavigationOnClickListener,虽然它打印了Log但它没有打开抽屉(我已经尝试过使用和不使用syncState()调用):

toolbar.setNavigationOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Log.i(TAG, "OPEN");
                toggle.syncState();
                drawer.openDrawer(GravityCompat.START);
            }
        });

1 个答案:

答案 0 :(得分:0)

检查这些代码,如果尚未包含这些代码,请尝试:

@Override
protected void onPostCreate(Bundle savedInstanceState) {
    super.onPostCreate(savedInstanceState);
    toggle.syncState();
}

@Override
public void onConfigurationChanged(Configuration newConfig) {
    super.onConfigurationChanged(newConfig);
    toggle.onConfigurationChanged(newConfig);
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    if (toggle.onOptionsItemSelected(item)) {
        return true;
    }
    ...
}

除了onCreate,每the official reference也需要这些代码。