I'm implementing a recyclerview
where the user can swipe left to remove the item from the list.
I want my app accessible and I want to know if its possible to announce in Talkback somehow to the user that he needs to swipe and also I want to know as well if I can catch this swipe gesture.
To implement the swipe gesture, I created a custom ItemTouchHelper.SimpleCallback (SwipeToRemoveCallback)
this way:
ItemTouchHelper.SimpleCallback swipeToRemoveCallback = new SwipeToRemoveCallback(this);
ItemTouchHelper itemTouchHelper = new ItemTouchHelper(swipeToRemoveCallback);
itemTouchHelper.attachToRecyclerView(binding.listState.myShoppingList);
I know that IOS can announce an action to the users. Is possible to do something like that in Android?
Thanks in advance,
Pedro