@Override
 public void setActionBarUpIndicator(Drawable themeImage, int contentDescRes) {
   mActivity.getActionBar().setDisplayShowHomeEnabled(true);
   mSetIndicatorInfo =
       ActionBarDrawerToggleHoneycomb.setActionBarUpIndicator(
           mSetIndicatorInfo, mActivity, themeImage, contentDescRes);
   mActivity.getActionBar().setDisplayShowHomeEnabled(false);
 }
 @Override
 public void setActionBarDescription(int contentDescRes) {
   mSetIndicatorInfo =
       ActionBarDrawerToggleHoneycomb.setActionBarDescription(
           mSetIndicatorInfo, mActivity, contentDescRes);
 }
 @Override
 public Drawable getThemeUpIndicator() {
   return ActionBarDrawerToggleHoneycomb.getThemeUpIndicator(mActivity);
 }