簡體   English   中英

打開導航抽屜,其中單擊事件具有布局

[英]Open Navigation Drawer with layout on click event

我有兩個導航抽屜,一個帶有ListView,另一個帶有Layout。 第一個Navigationdrawer可以正常工作,但是第二個在單擊按鈕時無法將其打開。

這是MainActivity xml代碼:

<LinearLayout
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"
android:layout_gravity="right"
android:orientation="vertical">

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <android.support.v7.widget.Toolbar
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/orange"
        android:id="@+id/toolbar"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:navigationIcon="@drawable/arrow"
        app:title="MyGames"
        >
            <Button
                android:id="@+id/rigthMenu"
                android:background="@drawable/compose"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:layout_marginRight="5dp"
                android:layout_gravity="right" />


    </android.support.v7.widget.Toolbar>

</RelativeLayout>

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollIndicators="bottom">

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

</FrameLayout>

<ListView
    android:id="@+id/left_drawer"
    android:layout_width="300dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="2dp"
    android:background="#ffffff"
    android:scrollbars="vertical"/>

    <include
        android:id="@+id/layRigth"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="end"
        layout="@layout/rigth_menu" />

</android.support.v4.widget.DrawerLayout>

這是rigthMenu布局xml代碼:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:gravity="left">

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New CheckBox"
    android:id="@+id/checkBox2"
    android:layout_gravity="center_horizontal" />

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New CheckBox"
    android:id="@+id/checkBox"
    android:layout_gravity="center_horizontal" />

<CheckBox
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New CheckBox"
    android:id="@+id/checkBox4"
    android:layout_gravity="center" />

這是MainActivity OnCreate代碼:

    @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
  //  mDrawerLayout2 = (DrawerLayout)findViewById(R.id.layRigth);
    android.support.v7.widget.Toolbar toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.toolbar);
    toolbar.setNavigationOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            onIcon = !onIcon;
            if (onIcon == true) {
                mDrawerLayout.openDrawer(mDrawerList);
            } else {
                mDrawerLayout.closeDrawer(mDrawerList);
            }
        }
    });

    Button rigthMenu = (Button)findViewById(R.id.rigthMenu);
    rigthMenu.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {

            final LayoutInflater factory = getLayoutInflater();
            final View text = factory.inflate(R.layout.rigth_menu, null);
            mDrawerLayout2 = (DrawerLayout)text.findViewById(R.id.layRigth);
            mDrawerLayout2.openDrawer(mDrawerLayout2);
        }
    });

    Drawable x = toolbar.getNavigationIcon();
    getDefaultSettings("Image", this);
  //  mNavigationView = (NavigationView) findViewById(R.id.shitstuff) ;

    mFragmentManager = getSupportFragmentManager();
    mFragmentTransaction = mFragmentManager.beginTransaction();
    mFragmentTransaction.replace(R.id.content_frame,new TabFragment()).commit();

    // Initializing
    dataList = new ArrayList<DrawerItem>();
    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    mDrawerList = (ListView) findViewById(R.id.left_drawer);

    // Add Drawer Item to dataList
    dataList.add(new DrawerItem(R.mipmap.ps4miniatura, GREEN, 1));
    dataList.add(new DrawerItem(R.mipmap.ps4miniatura, "PC", 0));
    dataList.add(new DrawerItem(0, " ", 2));
    adapter = new CustomDrawerAdapter(this, R.layout.custom_drawer_item, adapter,
            dataList);

 //   addItem.giveAdapter(adapter);
    mDrawerList.setAdapter(adapter);
    mDrawerList.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
    mDrawerList.setOnItemClickListener(new DrawerItemClickListener());

    if (savedInstanceState == null) {
        SelectItem(1);
    }
}

Logcat錯誤:

12-08 08:40:52.936 15587-15587/com.tutecentral.navigationdrawer E/AndroidRuntime: FATAL EXCEPTION: main
                                                                              Process: com.tutecentral.navigationdrawer, PID: 15587
                                                                              java.lang.NullPointerException: Attempt to invoke virtual method 'void android.support.v4.widget.DrawerLayout.openDrawer(android.view.View)' on a null object reference
                                                                                  at com.tutecentral.navigationdrawer.MainActivity$2.onClick(MainActivity.java:75)
                                                                                  at android.view.View.performClick(View.java:4820)
                                                                                  at android.view.View$PerformClick.run(View.java:20157)
                                                                                  at android.os.Handler.handleCallback(Handler.java:815)
                                                                                  at android.os.Handler.dispatchMessage(Handler.java:104)
                                                                                  at android.os.Looper.loop(Looper.java:194)
                                                                                  at android.app.ActivityThread.main(ActivityThread.java:5578)
                                                                                  at java.lang.reflect.Method.invoke(Native Method)
                                                                                  at java.lang.reflect.Method.invoke(Method.java:372)
                                                                                  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:955)
                                                                                  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:750)

我有一個nullPointException。 如何獲得rigthMenu布局的視圖?

請使用以下代碼打開和關閉抽屜

 public void toggleDrawer() {

        if (mDrawerLayout.isDrawerOpen(GravityCompat.START))
            mDrawerLayout.closeDrawer(GravityCompat.START);
        else
            mDrawerLayout.openDrawer(GravityCompat.START);
    }

rigthMenuOnClickListener中存在一些錯誤。 首先,不需要在那里增加rigth_menu布局。 您已將其包括在主布局中,因此它已經被誇大了。 此外, rigth_menu不包含ID為layRigth任何View ,因此text.findViewById(R.id.layRigth)返回null並導致NullPointerException 而且,您已經有了對DrawerLayout的引用mDrawerLayout因此您無需再次查找它。

rigthMenu.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            if(mDrawerLayout.isDrawerOpen(GravityCompat.END)) {
                mDrawerLayout.closeDrawer(GravityCompat.END);
            }
            else {
                mDrawerLayout.openDrawer(GravityCompat.END);
            }
        }
    });

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM