MaterialIntroView
MaterialIntroView copied to clipboard
Action Bar Drawer Toggle
How can we use it with ActionBarDrawerToggle?
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