i'm simply use this code to have slide menu in android applications but i can not move that to left side. by default this slide menu show in left side. how can i move it by default to right side
/*
* TAB LISTENER ON ------------------------------------------------------------
*/
final ActionBar actionBar = getSupportActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
//--------- TAB 1
ActionBar.Tab tab1 = actionBar.newTab();
tab1.setTabListener(this);
tab1.setIcon(R.drawable.abc_ic_voice_search);
actionBar.addTab(tab1);