0

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

下面的代码包含了onCreate里面的Layout内容和工具栏相关的代码:

<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 ,虽然它打印了日志,但它并没有打开抽屉(我已经尝试过使用和不使用 syncState() 调用):

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

1 回答 1

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 之外,官方参考也需要这些代码。

于 2015-11-02T14:24:56.267 回答