This library includes several accessibility related methods. The SetNextFocus methods allow you to explicitly set the focus order. This order is important when the user navigates your application with a directional controller (such as D-Pad). SetContentDescription sets the content that will be used by accessibility services such as TalkBack to describe the interface.
Sets the next view that will get the focus when the user presses on the down key (and ThisView is focused). Example: DimAccessAsAccessibility Access.SetNextFocusDown(Button1, Button2) 'When the focus is on Button1 and the user presses on the down key, 'the focus will move to Button2.
Sets the next view that will get the focus when the user presses on the down key (and ThisView is focused). Example: DimAccessAsAccessibility Access.SetNextFocusDown(Button1, Button2) 'When the focus is on Button1 and the user presses on the down key, 'the focus will move to Button2.