本文整理汇总了Java中android.app.ActionBar.addTab方法的典型用法代码示例。如果您正苦于以下问题:Java ActionBar.addTab方法的具体用法?Java ActionBar.addTab怎么用?Java ActionBar.addTab使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.app.ActionBar
的用法示例。
在下文中一共展示了ActionBar.addTab方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
import android.app.ActionBar; //导入方法依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.action_bar_display_options);
findViewById(R.id.toggle_home_as_up).setOnClickListener(this);
findViewById(R.id.toggle_show_home).setOnClickListener(this);
findViewById(R.id.toggle_use_logo).setOnClickListener(this);
findViewById(R.id.toggle_show_title).setOnClickListener(this);
findViewById(R.id.toggle_show_custom).setOnClickListener(this);
findViewById(R.id.toggle_navigation).setOnClickListener(this);
findViewById(R.id.cycle_custom_gravity).setOnClickListener(this);
mCustomView = getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
// Configure several action bar elements that will be toggled by display options.
final ActionBar bar = getActionBar();
bar.setCustomView(mCustomView,
new ActionBar.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
bar.addTab(bar.newTab().setText("Tab 1").setTabListener(this));
bar.addTab(bar.newTab().setText("Tab 2").setTabListener(this));
bar.addTab(bar.newTab().setText("Tab 3").setTabListener(this));
}
示例2: onCreate
import android.app.ActionBar; //导入方法依赖的package包/类
/**
* @brief This is the onCreate method
* @param savedInstanceState
* @details The onCreate method adds an actionBar to the activity with two tabs (recent and favorites).
* It also load the preferences file into the prefs attribute and sets the rememeberExit attribute.
*/
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tab_host);
final ActionBar actionBar = getActionBar();
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE|ActionBar.DISPLAY_SHOW_HOME);
final String recents = getString(R.string.recents);
final String favorites = getString(R.string.favoritesTab);
// add tabs
Tab tab1 = actionBar.newTab()
.setText(recents)
.setTabListener(new TabListener<ListFragmentTab>(
this, "tab1", ListFragmentTab.class));
actionBar.addTab(tab1);
Tab tab2 = actionBar.newTab()
.setText(favorites)
.setTabListener(new TabListener<ListFragmentTabFav>(
this, "tab2", ListFragmentTabFav.class));
actionBar.addTab(tab2);
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
//accedemos a fichero preferencias
(Configuration.getInstance()).setPrefs( getSharedPreferences("PreferencesFile",Context.MODE_PRIVATE));
(Configuration.getInstance()).readPrefs();
// Orientation Change Occurred
if(savedInstanceState!=null){
int currentTabIndex = savedInstanceState.getInt("tab_index");
actionBar.setSelectedNavigationItem(currentTabIndex);
}
//nombre en la activity bar
final String title = getString(R.string.connections);
setTitle(title);
}