Lines Matching defs:mode

173      * Live region mode specifying that accessibility services should not
175 * region mode for most views.
182 * Live region mode specifying that accessibility services should announce
190 * Live region mode specifying that accessibility services should interrupt
216 * is useful to apply a specific color filter and/or blending mode and/or
244 * blending mode and/or translucency to a view and all its children.</p>
506 * Returns the over-scroll mode for this view. The result will be
512 * @return This view's over-scroll mode.
524 * Set the over-scroll mode for this view. Valid over-scroll modes are
529 * Setting the over-scroll mode of a view will have an effect only if the
533 * @param overScrollMode The new over-scroll mode for this view.
707 * Gets the mode for determining whether this view is important for autofill.
710 * for more info about this mode.
729 * Sets the mode for determining whether this view is considered important for autofill.
746 * <p><b>NOTE:</strong> setting the mode as does {@link View#IMPORTANT_FOR_AUTOFILL_NO} or
757 * @param mode {@link View#IMPORTANT_FOR_AUTOFILL_AUTO},
765 public static void setImportantForAutofill(@NonNull View v, @AutofillImportance int mode) {
767 v.setImportantForAutofill(mode);
977 * Gets the mode for determining whether this View is important for accessibility
982 * @return The mode for determining whether a View is important for accessibility.
1003 * {@link #IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS} mode, then
1009 * @param mode How to determine whether this view is important for accessibility.
1017 @ImportantForAccessibility int mode) {
1019 view.setImportantForAccessibility(mode);
1024 if (mode == IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS) {
1025 mode = IMPORTANT_FOR_ACCESSIBILITY_NO;
1028 view.setImportantForAccessibility(mode);
1154 * <li>{@link android.graphics.Paint#getXfermode() Blending mode}</li>
1248 * <li>{@link android.graphics.Paint#getXfermode() Blending mode}</li>
1455 * Gets the live region mode for the specified View.
1457 * @param view The view from which to obtain the live region mode
1458 * @return The live region mode for the view.
1471 * Sets the live region mode for the specified view. This indicates to
1478 * mode {@link #ACCESSIBILITY_LIVE_REGION_POLITE}.
1482 * mode for most views.
1490 * @param view The view on which to set the live region mode
1491 * @param mode The live region mode for this view, one of:
1499 @AccessibilityLiveRegion int mode) {
1501 view.setAccessibilityLiveRegion(mode);
2383 * Return the blending mode used to apply the tint to the background
2399 * Specifies the blending mode used to apply the tint specified by
2401 * the background drawable. The default mode is {@link PorterDuff.Mode#SRC_IN}.
2407 public static void setBackgroundTintMode(@NonNull View view, PorterDuff.Mode mode) {
2409 view.setBackgroundTintMode(mode);
2425 ((TintableBackgroundView) view).setSupportBackgroundTintMode(mode);