基本上我们昨天为我们的项目实施了一个导航抽屉,因为我们不能再点击页面上的项目,好像抽屉仍然覆盖页面,即使关闭也能让我们点击页面上的任何内容。有没有办法让你点击这下面的元素"关闭"导航抽屉?
这是我们使用导航抽屉的一个页面的片段,即使抽屉关闭,我们也无法点击单个开关按钮。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.cocacola.fastgids.SettingsActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<android.support.v4.widget.DrawerLayout 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:id="@+id/drawer_layout"
android:layout_width="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true" tools:openDrawer="start"
android:elevation="4dp"
>
<android.support.design.widget.NavigationView android:id="@+id/nav_view"
android:layout_width="wrap_content" android:layout_height="match_parent"
android:layout_gravity="start" android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main" app:menu="@menu/activity_main_drawer" />
</android.support.v4.widget.DrawerLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/setting_Bootanim"
android:id="@+id/textView2"
android:layout_marginLeft="22dp"
android:layout_marginStart="22dp"
android:layout_below="@+id/my_toolbar"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginTop="28dp" />
<Switch
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/switchAnimation"
android:checked="true"
android:text="Disable/Enable"
android:layout_below="@+id/textView2"
android:layout_alignParentLeft="true"
android:layout_marginLeft="21dp" />
</RelativeLayout>
答案 0 :(得分:1)
当您要使用导航抽屉时,布局中的第一个元素应始终为drawerlayout。摘自官方Android开发者网站:
要添加导航抽屉,请使用a声明您的用户界面 DrawerLayout对象作为布局的根视图。
我强烈建议您从官方安卓网站上阅读this,然后重做您的代码。
答案 1 :(得分:0)
不要在DrawerLayout中添加新视图,它可以拦截触摸事件。