How to change hamburger icon in Android (NavigationDrawer)

前端 未结 3 2009
别跟我提以往
别跟我提以往 2020-12-17 00:58

Before write this thread I have try to implement the different solution that I found in stackoverflow, but nothing work properly.

I\'m developing an Android applucat

3条回答
  •  無奈伤痛
    2020-12-17 02:01

    Disable drawer indicator for ActionBarDrawerToggle:

    toggle.setDrawerIndicatorEnabled(false);
    

    and then:

    toolbar.setNavigationIcon(R.drawable. ic_custom_drawer_icon);
    

提交回复
热议问题