Drawerlayout opendrawer NullpointerException

时间:2016-04-05 06:07:40

标签: android nullpointerexception navigation-drawer drawerlayout

我使用DrawerLayout在不同片段之间进行导航。但是在我的应用程序中,我没有使用工具栏,对于工具栏,我创建了一个线性布局,它包含在每个片段的布局中,并在我的主要活动中公开静态定义Drawer布局,以便从每个片段访问它。我的drawerlayout位于main_activity.xml文件中。

<RelativeLayout
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.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawerLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <FrameLayout
        android:id="@+id/mainContent"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <!-- The navigation drawer -->
    <RelativeLayout
        android:layout_width="300dp"
        android:layout_height="match_parent"
        android:id="@+id/drawerPane"
        android:layout_gravity="start">

        <!-- Profile Box -->

        <RelativeLayout
            android:id="@+id/profileBox"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/background_material2"
            android:padding="8dp" >


            <ImageView
                android:id="@+id/avatar"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/user2"
                android:layout_marginTop="60dp" />

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="42dp"

                android:layout_marginStart="15dp"
                android:layout_marginLeft="15dp"
                android:layout_marginTop="115dp"
                android:layout_toRightOf="@+id/avatar"
                android:layout_toEndOf="@+id/avatar"

                android:orientation="vertical" >

                <TextView
                    android:id="@+id/userName"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Sushant Kumar"
                    android:textAllCaps="true"
                    android:textColor="#ffffff"
                    android:textSize="16sp"
                    android:textStyle="bold" />

                <TextView
                    android:id="@+id/desc"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="4dp"

                    android:text="8931839445"
                    android:textColor="#fff"
                    android:textSize="12sp" />
            </LinearLayout>
        </RelativeLayout>

        <!-- List of Actions (pages) -->
        <ListView
            android:id="@+id/navList"
            android:layout_width="300dp"
            android:layout_height="match_parent"
            android:layout_below="@+id/profileBox"
            android:choiceMode="singleChoice"
            android:background="#ffffff" />

    </RelativeLayout>

</android.support.v4.widget.DrawerLayout>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:id="@+id/alert"
    android:visibility="gone"
    android:background="@color/PrimaryColor"
    >
    <TextView
        android:layout_width="match_parent"
        android:gravity="center"
        android:layout_height="wrap_content"
        android:textStyle="bold"
        android:text="Getting Problems while connecting to Server."
        />
</LinearLayout>

在我的主要活动中,我这样初始化:

mDrawerLayout = (DrawerLayout) findViewById(R.id.drawerLayout);

    // Populate the Navigtion Drawer with options
    mDrawerPane = (RelativeLayout) findViewById(R.id.drawerPane);
    mDrawerList = (ListView) findViewById(R.id.navList);
    DrawerListAdapter adapter = new DrawerListAdapter(this, mNavItems);
    mDrawerList.setAdapter(adapter);

这是我的工具栏xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<LinearLayout
    android:layout_width="match_parent"
    android:id="@+id/action_bar"
    android:orientation="horizontal"
    android:background="@color/PrimaryColor"
    android:layout_height="wrap_content">
    <ImageView
        android:layout_width="50dp"
        android:padding="10dp"
        android:layout_height="50dp"
        android:id="@+id/togglebutton"
        android:src="@drawable/ic_menu"
        />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:text="ABOUT MOOVO"
        android:id="@+id/title"
        android:textAllCaps="true"
        android:textSize="18sp"
        android:layout_marginRight="50dp"
        android:textStyle="bold"
        android:textColor="#FFFFFF"
        />
</LinearLayout>

点击Ic_menu图标我使用以下代码从不同的片段打开抽屉窗格:

Ic_menu.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            MainActivity.mDrawerLayout.openDrawer(MainActivity.mDrawerPane);
        }
    });

这大部分时间都能正常工作,但有时会产生Nullpointerexception。

Fatal Exception: java.lang.NullPointerException Attempt to invoke virtual method 'void android.support.v4.widget.DrawerLayout.openDrawer(android.view.View)' on a null object reference

如何解决这个问题,有什么建议吗?

1 个答案:

答案 0 :(得分:0)

如果你的Ic_menu.setOnClickListener()不在MainActivity中,那么你可以在当前活动中膨胀xml的Mainactivity并初始化那里的所有视图。 代码:

 View view = ((LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE))
                .inflate(R.layout.activity_main, null, false);
       mDrawerLayout = (DrawerLayout) view.findViewById(R.id.drawerLayout);

       mDrawerPane = (RelativeLayout) view.findViewById(R.id.drawerPane);

现在,您更新的Ic_menu.setOnClickListener()应如下所示:

Ic_menu.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            mDrawerLayout.openDrawer(mDrawerPane);
        }
    });