单击导航抽屉项触发其后面的片段的onClick事件。它适用于其他设备,但我的一个用户抱怨他无法点击导航抽屉项目。他正在使用华为G Play Mini。有什么方法可以解决这个问题吗?
这是我的xml。
<!-- The important thing to note here is the added fitSystemWindows -->
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<!-- Your normal content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#FAFAFA"
android:gravity="center_horizontal"
android:orientation="vertical">
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:src="@mipmap/ic_launcher" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="#802196F3" />
<!--<TextView
android:id="@+id/acc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_background"
android:gravity="center"
android:onClick="onMenuClicked"
android:padding="16dp"
android:text="@string/menu_acc"
android:textColor="#212121"
android:textSize="16sp" />-->
<TextView
android:id="@+id/setup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_background"
android:gravity="center"
android:onClick="onMenuClicked"
android:padding="16dp"
android:text="@string/menu_setup"
android:textColor="#212121"
android:textSize="16sp" />
<TextView
android:id="@+id/settings"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_background"
android:gravity="center"
android:onClick="onMenuClicked"
android:padding="16dp"
android:text="@string/menu_settings"
android:textColor="#212121"
android:textSize="16sp" />
<TextView
android:id="@+id/tutorial"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_background"
android:gravity="center"
android:onClick="onMenuClicked"
android:padding="16dp"
android:text="@string/menu_tutorial"
android:textColor="#212121"
android:textSize="16sp" />
<TextView
android:id="@+id/converter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_background"
android:gravity="center"
android:onClick="onMenuClicked"
android:padding="16dp"
android:text="@string/menu_converter"
android:textColor="#212121"
android:textSize="16sp" />
<TextView
android:id="@+id/about"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_background"
android:gravity="center"
android:onClick="onMenuClicked"
android:padding="16dp"
android:text="@string/menu_about"
android:textColor="#212121"
android:textSize="16sp" />
<TextView
android:id="@+id/buypro"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/menu_background"
android:gravity="center"
android:onClick="onMenuClicked"
android:padding="16dp"
android:text="@string/menu_buy"
android:textColor="#212121"
android:textSize="16sp" />
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:2)
使用NavigationView代替LinearLayout。
您可以看到更详细的示例here。
该页面上显示的示例是这个(我还添加了你的FrameLayout):
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<!-- your content layout -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"/>
</android.support.v4.widget.DrawerLayout>
注意可用于定义标题布局的app:headerLayout="@layout/drawer_header"
(例如,您的drawer_header.xml
包含单个ImageView)。要填充列表,您需要一个菜单资源文件(例如菜单目录中的drawer.xml
,app:menu="@menu/drawer"
属性链接到该文件。)