Guest User

Untitled

a guest
Jun 21st, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. Toolbar toolbar = view.findViewById(R.id.toolbar);
  2. ((AppCompatActivity) getActivity()).setSupportActionBar(toolbar);
  3.  
  4. DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
  5. ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
  6. this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
  7. drawer.setDrawerListener(toggle);
  8. toggle.syncState();
Add Comment
Please, Sign In to add comment