为什么isDrawerVisible总是显示为false

时间:2015-01-20 13:10:06

标签: android drawerlayout

所以,我有这个

btn_menu.setOnClickListener(new View.OnClickListener() {
@Override

        public void onClick(View v) {if(mDrawerLayout.isDrawerVisible(R.id.drawer_layout) == false) {
                mDrawerLayout.openDrawer(mDrawerList);
                Log.d("False", "" + mDrawerLayout.isDrawerOpen(R.id.drawer_layout));
            } else {
                mDrawerLayout.closeDrawer(mDrawerLayout);
                Log.d("True", "" + mDrawerLayout.isDrawerOpen(R.id.drawer_layout));
            }
        }
    });

在" btn_menu"点击我将打开和关闭抽屉,事情是,无论我做什么方法" isDrawerOpen"总是会返回假的。我不知道还能做什么。

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer -->

<ExpandableListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#111"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />

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

编辑:blipinsk回答是对的。但我不得不改变if测试。

if (mDrawerLayout.isDrawerOpen(Gravity.LEFT)) {
                    mDrawerLayout.closeDrawer(Gravity.LEFT);
                } else {
                    mDrawerLayout.openDrawer(Gravity.LEFT);
                }

1 个答案:

答案 0 :(得分:4)

当您致电isDrawerOpen时,您需要指定要检查的抽屉(可能有两个 - 一个在右侧,一个在左侧)。

所以在你的情况下它应该是:

mDrawerLayout.isDrawerOpen(Gravity.LEFT)