View.AccessibilityLiveRegion Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the live region mode for this View. -or- Sets the live region mode for this view.
public virtual Android.Views.AccessibilityLiveRegion AccessibilityLiveRegion { [Android.Runtime.Register("getAccessibilityLiveRegion", "()I", "GetGetAccessibilityLiveRegionHandler")] get; [Android.Runtime.Register("setAccessibilityLiveRegion", "(I)V", "GetSetAccessibilityLiveRegion_IHandler")] set; }
[<get: Android.Runtime.Register("getAccessibilityLiveRegion", "()I", "GetGetAccessibilityLiveRegionHandler")>]
[<set: Android.Runtime.Register("setAccessibilityLiveRegion", "(I)V", "GetSetAccessibilityLiveRegion_IHandler")>]
member this.AccessibilityLiveRegion : Android.Views.AccessibilityLiveRegion with get, set
Property Value
The live region mode for the view.
- Attributes
Remarks
Property getter documentation:
Gets the live region mode for this View.
Java documentation for android.view.View.getAccessibilityLiveRegion()
.
Property setter documentation:
Sets the live region mode for this view. This indicates to accessibility services whether they should automatically notify the user about changes to the view's content description or text, or to the content descriptions or text of the view's children (where applicable).
For example, in a login screen with a TextView that displays an "incorrect password" notification, that view should be marked as a live region with mode #ACCESSIBILITY_LIVE_REGION_POLITE
.
To disable change notifications for this view, use #ACCESSIBILITY_LIVE_REGION_NONE
. This is the default live region mode for most views.
To indicate that the user should be notified of changes, use #ACCESSIBILITY_LIVE_REGION_POLITE
.
If the view's changes should interrupt ongoing speech and notify the user immediately, use #ACCESSIBILITY_LIVE_REGION_ASSERTIVE
.
Java documentation for android.view.View.setAccessibilityLiveRegion(int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.