Lines Matching defs:view

17 package android.support.v4.view;
20 import android.support.v4.view.accessibility.AccessibilityNodeInfoCompat;
21 import android.view.View;
22 import android.view.accessibility.AccessibilityEvent;
30 * Always allow a user to over-scroll this view, provided it is a
31 * view that can scroll.
36 * Allow a user to over-scroll this view only if the content is large
37 * enough to meaningfully scroll, provided it is a view that can scroll.
42 * Never allow a user to over-scroll this view.
135 * Check if this view can be scrolled horizontally in a certain direction.
139 * @return true if this view can be scrolled in the specified direction, false otherwise.
146 * Check if this view can be scrolled vertically in a certain direction.
150 * @return true if this view can be scrolled in the specified direction, false otherwise.
157 * Returns the over-scroll mode for this view. The result will be
159 * (allow over-scrolling only if the view content is larger than the container),
163 * @return This view's over-scroll mode.
170 * Set the over-scroll mode for this view. Valid over-scroll modes are
172 * (allow over-scrolling only if the view content is larger than the container),
175 * Setting the over-scroll mode of a view will have an effect only if the
176 * view is capable of scrolling.
179 * @param overScrollMode The new over-scroll mode for this view.
202 * If an {@link android.view.View.AccessibilityDelegate} has been specified via calling
203 * {@link View#setAccessibilityDelegate(android.view.View.AccessibilityDelegate)} its
204 * {@link android.view.View.AccessibilityDelegate#onPopulateAccessibilityEvent(View,
225 * an accessibility event is the view whose state change triggered firing
235 * If an {@link android.view.View.AccessibilityDelegate} has been specified via calling
236 * {@link View#setAccessibilityDelegate(android.view.View.AccessibilityDelegate)} its
237 * {@link android.view.View.AccessibilityDelegate#onInitializeAccessibilityEvent(View,
256 * Initializes an {@link android.view.accessibility.AccessibilityNodeInfo} with information
257 * about this view. The base implementation sets:
259 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setParent(View)},</li>
260 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setBoundsInParent(Rect)},</li>
261 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setBoundsInScreen(Rect)},</li>
262 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setPackageName(CharSequence)},</li>
263 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setClassName(CharSequence)},</li>
264 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setContentDescription(CharSequence)},</li>
265 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setEnabled(boolean)},</li>
266 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setClickable(boolean)},</li>
267 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setFocusable(boolean)},</li>
268 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setFocused(boolean)},</li>
269 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setLongClickable(boolean)},</li>
270 * <li>{@link android.view.accessibility.AccessibilityNodeInfo#setSelected(boolean)},</li>
277 * If an {@link android.view.View.AccessibilityDelegate} has been specified via calling
278 * {@link View#setAccessibilityDelegate(android.view.View.AccessibilityDelegate)} its
279 * {@link android.view.View.AccessibilityDelegate#onInitializeAccessibilityNodeInfo(View,
280 * android.view.accessibility.AccessibilityNodeInfo)}
295 * {@link android.view.View.AccessibilityDelegate}.
300 * @see android.view.View.AccessibilityDelegate