Disable animation of drawer icon in double navigation drawer for right drawer

纵饮孤独 提交于 2019-12-20 19:46:39

问题


I have a Double Navigation Drawer

I have two problems.

1) The navigation drawer icon on the left (3 bars) animate when opening or closing the navigation drawer on the right.

2) I do not know how to add the icon to the right and have it animate only for the right drawer.


回答1:


You need to override the onDrawerSlide method of ActionBarDrawerToggle and set the slideOffset to 0 if the drawer is right drawer. So this would disable the animation of the navigation drawer image

for right drawer.
  @Override
  public void onDrawerSlide(View drawerView, float slideOffset) 
  {
        if(drawerView!=null && drawerView == rightDrawerListView){
              super.onDrawerSlide(drawerView, 0);
        }else{
              super.onDrawerSlide(drawerView, slideOffset);
        }
  }

This worked for me similar to Google+.



来源:https://stackoverflow.com/questions/21867293/disable-animation-of-drawer-icon-in-double-navigation-drawer-for-right-drawer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!