MaterialIntroView icon indicating copy to clipboard operation
MaterialIntroView copied to clipboard

Action Bar Drawer Toggle

Open paul035 opened this issue 5 years ago • 1 comments

How can we use it with ActionBarDrawerToggle?

paul035 avatar Dec 25 '20 17:12 paul035

private View getDrawerView(Toolbar toolbar) { for (int i = 0; i < toolbar.getChildCount(); i++) { if (toolbar.getChildAt(i) instanceof ImageButton) return toolbar.getChildAt(i); } return null; }

this code works, collected from issue13

das1192 avatar Feb 01 '21 15:02 das1192