Lines Matching defs:view

23 import android.view.Gravity;
24 import android.view.View;
25 import android.view.ViewDebug;
26 import android.view.ViewGroup;
27 import android.view.ViewGroup.MarginLayoutParams;
28 import android.view.Window;
38 * android.view.Window#requestFeature requestFeature(FEATURE_ACTION_BAR)} or by declaring it in a
47 * using an {@link android.view.ActionMode}. For example, when the user selects one or more items in
50 * same space, the {@link android.view.ActionMode} APIs are distinct and independent from those for
127 * Show the custom view if one has been set.
135 * Set the action bar into custom navigation mode, supplying a view
144 * @param view Custom navigation view to place in the ActionBar.
146 public abstract void setCustomView(View view);
149 * Set the action bar into custom navigation mode, supplying a view
159 * the custom view to be displayed.</p>
161 * @param view Custom navigation view to place in the ActionBar.
162 * @param layoutParams How this custom view should layout in the bar.
166 public abstract void setCustomView(View view, LayoutParams layoutParams);
169 * Set the action bar into custom navigation mode, supplying a view
179 * the custom view to be displayed.</p>
409 * Set whether a custom view should be displayed, if set.
413 * @param showCustom true if the currently set custom view should be displayed, false otherwise.
449 * @return The current custom view.
772 * Set a custom view to be used for this tab. This overrides values set by
775 * @param view Custom view to be used as a tab.
778 public abstract Tab setCustomView(View view);
781 * Set a custom view to be used for this tab. This overrides values set by
784 * @param layoutResId A layout resource to inflate and use as a custom tab view
790 * Retrieve a previously set custom view for this tab.
792 * @return The custom view set by {@link #setCustomView(View)}.
900 * Gravity for the view associated with these LayoutParams.
902 * @see android.view.Gravity