當前位置: 首頁>>代碼示例>>Java>>正文


Java Tab.setText方法代碼示例

本文整理匯總了Java中android.support.v7.app.ActionBar.Tab.setText方法的典型用法代碼示例。如果您正苦於以下問題:Java Tab.setText方法的具體用法?Java Tab.setText怎麽用?Java Tab.setText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.support.v7.app.ActionBar.Tab的用法示例。


在下文中一共展示了Tab.setText方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: setActionBar

import android.support.v7.app.ActionBar.Tab; //導入方法依賴的package包/類
private void setActionBar() {
		actionBar = getSupportActionBar();
		actionBar.setDisplayHomeAsUpEnabled(true);
//		actionBar.setTitle(getResources().getString(R.string.str_title_contacts_manager));
		actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

		Tab contactsTab = actionBar.newTab();
		contactsTab.setText(getString(R.string.str_contacts));
		contactsTab.setTabListener(contactsTabListener);
		actionBar.addTab(contactsTab);

		Tab groupsTab = actionBar.newTab();
		groupsTab.setText(getString(R.string.str_lists));
		groupsTab.setTabListener(groupsTabListener);
		actionBar.addTab(groupsTab);
	}
 
開發者ID:Defuera,項目名稱:cards-app,代碼行數:17,代碼來源:ContactsManagerActivity.java

示例2: configureTabNavigation

import android.support.v7.app.ActionBar.Tab; //導入方法依賴的package包/類
/**
 * Configures the {@link ActionBar} to display navigation tabNames.
 *
 * @param actionBar the {@link ActionBar} to customize.
 * @param names     the collection of tab names.
 * @param listener  the {@link TabListener} to handle tab selection events.
 */
public static void configureTabNavigation(final ActionBar actionBar, final List<String> names,
                                          final TabListener listener) {

    if (listener == null) {
        throw new IllegalArgumentException("TabListener must be supplied");
    }

    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

    for (final String name : names) {
        final Tab tab = actionBar.newTab();

        tab.setTabListener(listener);
        tab.setText(name);

        actionBar.addTab(tab);
    }
}
 
開發者ID:remelpugh,項目名稱:android-shared,代碼行數:26,代碼來源:ActionBarUtils.java

示例3: addTab

import android.support.v7.app.ActionBar.Tab; //導入方法依賴的package包/類
private void addTab(String tag){
    Tab tab = mActionBar.newTab();
    tab.setTag(tag);
    tab.setText(tag);
    tab.setTabListener(new TabFragmentListener<TabFragment>(this, tag, TabFragment.class));
    mActionBar.addTab(tab);
}
 
開發者ID:wada811,項目名稱:AndroidLibrary-wada811,代碼行數:8,代碼來源:TabActionBarActivity.java

示例4: addTab

import android.support.v7.app.ActionBar.Tab; //導入方法依賴的package包/類
private void addTab(String tag){
    Tab tab = mActionBar.newTab();
    tab.setTag(tag);
    tab.setIcon(R.drawable.ic_action_search);
    tab.setText(tag);
    tab.setTabListener(new TabFragmentListener<TabFragment>(this, tag, TabFragment.class));
    mActionBar.addTab(tab);
}
 
開發者ID:wada811,項目名稱:AndroidLibrary-wada811,代碼行數:9,代碼來源:TabIconTitleActionBarActivity.java

示例5: makeActionBarTab

import android.support.v7.app.ActionBar.Tab; //導入方法依賴的package包/類
protected Tab makeActionBarTab(TabInfo tabInfo) {
    Tab tab = mActionBar.newTab();
    tab.setText(tabInfo.mTitle);
    tab.setTabListener(mAdapter);
    return tab;
}
 
開發者ID:restorer,項目名稱:gloomy-dungeons-2,代碼行數:7,代碼來源:TabSwipeController.java

示例6: onCreate

import android.support.v7.app.ActionBar.Tab; //導入方法依賴的package包/類
@Override
protected void onCreate(Bundle savedInstanceState)
{
	super.onCreate(savedInstanceState);
	setContentView(R.layout.activity_main);

	// Set global context
	Globals.setContext(getApplicationContext());

	// Set up the action bar.
	final ActionBar actionBar = getSupportActionBar();
	actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

	// Create the adapter that will return a fragment for each of the three
	// primary sections of the activity.
	sectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

	// Set up the ViewPager with the sections adapter.
	viewPager = (ViewPager)findViewById(R.id.main_pager);
	viewPager.setAdapter(sectionsPagerAdapter);

	// When swiping between different sections, select the corresponding
	// tab. We can also use ActionBar.Tab#select() to do this if we have
	// a reference to the Tab.
	viewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener()
	{
		@Override
		public void onPageSelected(int position)
		{
			actionBar.setSelectedNavigationItem(position);
		}
	});

	Tab cleanTab = actionBar.newTab();
	cleanTab.setText(CLEAN_TAB_TITLE);
	cleanTab.setTabListener(this);
	actionBar.addTab(cleanTab);

	Tab profileTab = actionBar.newTab();
	profileTab.setText(PROFILE_TAB_TITLE);
	profileTab.setTabListener(this);
	actionBar.addTab(profileTab);
}
 
開發者ID:JohnNPhillips,項目名稱:HistoryCleanerPro,代碼行數:44,代碼來源:MainActivity.java


注:本文中的android.support.v7.app.ActionBar.Tab.setText方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。