在我的应用程序中使用导航抽屉时,当我们点击主页按钮(R.id.home)时,它会在工具栏上完全打开。
但是当我点击导航抽屉的左上角时,它会再次触发主页按钮并关闭导航抽屉
答案 0 :(得分:2)
您的导航抽屉可能无法点击。
我建议您尝试将android:clickable="true"
添加到XML
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
.... >
<LinearLayout
...>
<!-- your main view -->
</LinearLayout>
<!-- drawer layout view -->
<LinearLayout
android:layout_width="300dip"
android:layout_height="match_parent"
android:clickable="true">
<!-- content of drawer layout -->
</LinearLayout>
</android.support.v4.widget.DrawerLayout>