You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cannot select a date using the keyboard. We have a requirement to support accessibility and when the calendar view opens, the tab key only allows selection of the entire month. There doesn't seem to be a way, via keyboard tab key or arrow keys, to navigate between days and select a date.
Any ideas on how to make dates keyboard selectable?
The text was updated successfully, but these errors were encountered:
It should be fairly simple stuff to add. Accessibility for keyboard nav means the user should be able to direct focus to the elements on the screen using the tab or arrow keys. In xml, you can set 'android:focusable="true"' to a view and then the tab key on the keyboard will focus on that view.
since the calendar is a listview, adding that in XML might be a problem You might need 'listView.setFocusableInTouchMode(true);' or 'listView. setItemsCanFocus(true)'. You might also have to explicitly set focus on the view in the listview with android:descendantFocusability="afterDescendants"
and then listview.AddFocusables(ArrayList, int direction, int focusableMode)
I cannot select a date using the keyboard. We have a requirement to support accessibility and when the calendar view opens, the tab key only allows selection of the entire month. There doesn't seem to be a way, via keyboard tab key or arrow keys, to navigate between days and select a date.
Any ideas on how to make dates keyboard selectable?
The text was updated successfully, but these errors were encountered: