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


Java ActionBar.setDisplayOptions方法代碼示例

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


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

示例1: setupActionBar

import android.app.ActionBar; //導入方法依賴的package包/類
private void setupActionBar() {
    ActionBar actionBar = getActionBar();
    if (actionBar != null) {
        actionBar.setCustomView(R.layout.action_bar);
        actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
        actionBar.getCustomView().findViewById(R.id.action_bar_back_icon).setOnClickListener(
                new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                onBackPressed();
            }
        });
    }
}
 
開發者ID:Adyen,項目名稱:adyen-android,代碼行數:15,代碼來源:CheckoutActivity.java

示例2: setupActionBar

import android.app.ActionBar; //導入方法依賴的package包/類
public static void setupActionBar(ActionBar actionBar, int rLogoId) {
    actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME
            | ActionBar.DISPLAY_HOME_AS_UP | ActionBar.DISPLAY_SHOW_TITLE);
    actionBar.setHomeButtonEnabled(true);
    // NOTE:
    // There is a bug in the handling of ActionView (SearchView) icon inside ActionBarImpl, so
    // we have to workaround it by setting the icon to logo programmatically.
    actionBar.setIcon(rLogoId);
}
 
開發者ID:HanyeeWang,項目名稱:GeekZone,代碼行數:10,代碼來源:AppUtils.java

示例3: setupActionBarDoneCancel

import android.app.ActionBar; //導入方法依賴的package包/類
public static void setupActionBarDoneCancel(int layoutId,
                                            Activity activity,
                                            int doneId,
                                            View.OnClickListener onDoneListener,
                                            int cancelId,
                                            View.OnClickListener onCancelListener) {
    ActionBar actionBar = activity.getActionBar();
    actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
    actionBar.setCustomView(makeDoneCancelLayout(layoutId, activity,
            doneId, onDoneListener,
            cancelId, onCancelListener));
}
 
開發者ID:HanyeeWang,項目名稱:GeekZone,代碼行數:13,代碼來源:AppUtils.java

示例4: onCreate

import android.app.ActionBar; //導入方法依賴的package包/類
/**
 * @brief This is the onCreate method
 * @param savedInstanceState
 * @details The onCreate method adds an actionBar the show title and the home display
 */
@Override
protected void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.help);
    
	//efectos del actionBar
	final ActionBar actionBar = getActionBar();
       
       actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE|ActionBar.DISPLAY_SHOW_HOME|ActionBar.DISPLAY_HOME_AS_UP);
       
}
 
開發者ID:CodyyAndroid,項目名稱:LibVNCAndroid,代碼行數:18,代碼來源:HelpActivity.java

示例5: setupActionBarNoUp

import android.app.ActionBar; //導入方法依賴的package包/類
public static void setupActionBarNoUp(ActionBar actionBar, int rLogoId) {
    actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_SHOW_TITLE);
    actionBar.setHomeButtonEnabled(false);
    actionBar.setIcon(rLogoId);
}
 
開發者ID:HanyeeWang,項目名稱:GeekZone,代碼行數:6,代碼來源:AppUtils.java

示例6: onClick

import android.app.ActionBar; //導入方法依賴的package包/類
public void onClick(View v) {
    final ActionBar bar = getActionBar();
    int flags = 0;
    switch (v.getId()) {
        case R.id.toggle_home_as_up:
            flags = ActionBar.DISPLAY_HOME_AS_UP;
            break;
        case R.id.toggle_show_home:
            flags = ActionBar.DISPLAY_SHOW_HOME;
            break;
        case R.id.toggle_use_logo:
            flags = ActionBar.DISPLAY_USE_LOGO;
            break;
        case R.id.toggle_show_title:
            flags = ActionBar.DISPLAY_SHOW_TITLE;
            break;
        case R.id.toggle_show_custom:
            flags = ActionBar.DISPLAY_SHOW_CUSTOM;
            break;

        case R.id.toggle_navigation:
            bar.setNavigationMode(
                    bar.getNavigationMode() == ActionBar.NAVIGATION_MODE_STANDARD
                            ? ActionBar.NAVIGATION_MODE_TABS
                            : ActionBar.NAVIGATION_MODE_STANDARD);
            return;
        case R.id.cycle_custom_gravity:
            ActionBar.LayoutParams lp = (ActionBar.LayoutParams) mCustomView.getLayoutParams();
            int newGravity = 0;
            switch (lp.gravity & Gravity.HORIZONTAL_GRAVITY_MASK) {
                case Gravity.LEFT:
                    newGravity = Gravity.CENTER_HORIZONTAL;
                    break;
                case Gravity.CENTER_HORIZONTAL:
                    newGravity = Gravity.RIGHT;
                    break;
                case Gravity.RIGHT:
                    newGravity = Gravity.LEFT;
                    break;
            }
            lp.gravity = lp.gravity & ~Gravity.HORIZONTAL_GRAVITY_MASK | newGravity;
            bar.setCustomView(mCustomView, lp);
            return;
    }

    int change = bar.getDisplayOptions() ^ flags;
    bar.setDisplayOptions(change, flags);
}
 
開發者ID:sdrausty,項目名稱:buildAPKsSamples,代碼行數:49,代碼來源:ActionBarDisplayOptions.java

示例7: onCreate

import android.app.ActionBar; //導入方法依賴的package包/類
/**
 * @brief This is the onCreate method
 * @param savedInstanceState
 * @details The onCreate method adds two switches to control the remember exit,
 * and the show of the cursor
 */
@Override
protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	setContentView(R.layout.configuration);
	

	Switch checkBox = (Switch) findViewById(R.id.checkbox_remember);
	
	Switch checkBoxHide = (Switch) findViewById(R.id.checkbox_hidemouse);
	
	
	checkBox.setChecked((Configuration.getInstance()).isRememberExit());
	
	checkBoxHide.setChecked((Configuration.getInstance()).isHideMouse());
       
	//efectos del actionBar
	final ActionBar actionBar = getActionBar();
       
       actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE|ActionBar.DISPLAY_SHOW_HOME|ActionBar.DISPLAY_HOME_AS_UP);
       

}
 
開發者ID:CodyyAndroid,項目名稱:LibVNCAndroid,代碼行數:29,代碼來源:ConfigurationMenu.java

示例8: 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.setDisplayOptions方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。