Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. ActionBar ab = getSupportActionBar();
  2. toggle.setDrawerIndicatorEnabled(false);
  3.  
  4. ab.setHomeAsUpIndicator(R.drawable.close_button);
  5. ab.setDisplayHomeAsUpEnabled(true);
  6.  
  7. switch (item.getItemId()) {
  8. case android.R.id.home:
  9. func(); // doesn't called
  10. return true;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement