NavigationView监听器无效

NavigationView没放在布局的最后面设置监听器无效,还有这样的事。

下面是的布局设置监听器ok

xml version="1.0" encoding="utf-8"?>
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"
    android:id="@+id/drawer"
    >
            android:fitsSystemWindows="true"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
                    android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true">
                            android:fitsSystemWindows="true"
                android:scaleType="centerCrop"
                android:id="@+id/listpic"
                android:background="@android:color/transparent"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
        
                    android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
                            android:layout_gravity="center"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">
                                    android:layout_alignParentRight="true"
                    android:textSize="20sp"
                    android:gravity="center"
                    android:text="音乐列表"
                    android:layout_width="match_parent"
                    android:layout_height="40dp" />
                

你可能感兴趣的:(android学习笔记,NavigationView)