Slide 23
Slide 23 text
ActionBarCompat
ActionBarDrawerToggle Support
Automatic support for ActionBarDrawerToggle
Need to be using ActionBarActivity
// Enable Home button and set to display as up navigation
getSupportActionBar().setHomeButtonEnabled(true);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
// Create ActionBarDrawerToggle
mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout,
R.drawable.ic_drawer, R.string.drawer_open, R.string.drawer_close);
// Finally set the ActionBarDrawerToggle as the DrawerListener
mDrawerLayout.setDrawerListener(mDrawerToggle);