Home | History | Annotate | Download | only in app

Lines Matching full:actionbar

20 import android.app.ActionBar;
21 import android.app.ActionBar.Tab;
34 implements View.OnClickListener, ActionBar.TabListener {
54 final ActionBar bar = getActionBar();
56 new ActionBar.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
70 final ActionBar bar = getActionBar();
74 flags = ActionBar.DISPLAY_HOME_AS_UP;
77 flags = ActionBar.DISPLAY_SHOW_HOME;
80 flags = ActionBar.DISPLAY_USE_LOGO;
83 flags = ActionBar.DISPLAY_SHOW_TITLE;
86 flags = ActionBar.DISPLAY_SHOW_CUSTOM;
91 bar.getNavigationMode() == ActionBar.NAVIGATION_MODE_STANDARD
92 ? ActionBar.NAVIGATION_MODE_TABS
93 : ActionBar.NAVIGATION_MODE_STANDARD);
96 ActionBar.LayoutParams lp = (ActionBar.LayoutParams) mCustomView.getLayoutParams();