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.
782 * Set a custom view to be used for this tab. This overrides values set by
785 * @param view Custom view to be used as a tab.
788 public abstract Tab setCustomView(View view);
791 * Set a custom view to be used for this tab. This overrides values set by
794 * @param layoutResId A layout resource to inflate and use as a custom tab view
800 * Retrieve a previously set custom view for this tab.
802 * @return The custom view set by {@link #setCustomView(View)}.
910 * Gravity for the view associated with these LayoutParams.
912 * @see android.view.Gravity