Navigation Drawer icon not showing (Sherlock actionbar)

前端 未结 11 2040
一向
一向 2021-02-04 03:41

Have the navigation Drawer working with the sherlock actionbar but i am having trouble getting the 3 line icon (like gmail) to show instead of the normal up button \"<\". He

11条回答
  •  旧时难觅i
    2021-02-04 03:51

    I have added this line before calling setDrawerListener.

    mDrawerLayout.post(new Runnable() {
    @Override public void run() {
     mDrawerToggle.syncState();
    }
    });
    

    Hope this will fix the issue in lower devices.

提交回复
热议问题