android - open navigation drawer by clicking the app icon?

后端 未结 2 513
攒了一身酷
攒了一身酷 2021-02-07 14:31

I use a navigation drawer in my app (the type of navigation that you open by sliding from the left side of the screen). Now, usually you can also open it by tapping the app icon

2条回答
  •  逝去的感伤
    2021-02-07 14:47

    I ran into this issue also, assuming you already have an ActionBarDrawerToggle as @Kernald suggested, you need to add the following also to your Activity:

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Pass the event to ActionBarDrawerToggle, if it returns
        // true, then it has handled the app icon touch event
        if (mDrawerToggle.onOptionsItemSelected(item)) {
          return true;
        }
        // Handle your other action bar items...
    
        return super.onOptionsItemSelected(item);
    }
    

    This let's the toggle handle the icon button press on the ActionBar, causing the Drawer to slide out.

提交回复
热议问题