当前位置: 首页>>代码示例>>Java>>正文


Java ActionBar.addTab方法代码示例

本文整理汇总了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));
}
 
开发者ID:sdrausty,项目名称:buildAPKsSamples,代码行数:24,代码来源:ActionBarDisplayOptions.java

示例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);
		       
}
 
开发者ID:CodyyAndroid,项目名称:LibVNCAndroid,代码行数:54,代码来源:ActivityTabs.java


注:本文中的android.app.ActionBar.addTab方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。