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
The accessibility issue of Termux for TalkBack is very disappointing.
I have programmed for Android and can suggest solutions:
Use EditText instead of View.
However, this method has a drawback, for example:
private CharSequence getText would need to be changed to public Editable getText.
We can simply announce the deleted text or character.
Add the ability to select text using the volume keys.
In general, Android screen readers work like this with EditText, but unfortunately, we have View instead :(
We should also remember to announce the selected character.
Feature description
this function very supported for talkback users
Additional information
The accessibility issue of Termux for TalkBack is very disappointing.
However, this method has a drawback, for example:
private CharSequence getText would need to be changed to public Editable getText.
Using this method doesn't require you to be a genius; you just need to handle the KeyEvent.KEYCODE_DEL event (https://developer.android.com/reference/android/view/KeyEvent#KEYCODE_DEL).
In general, Android screen readers work like this with EditText, but unfortunately, we have View instead :(
We should also remember to announce the selected character.
Simply set the state to on and off when pressed and off when the app starts.
I wish the project to flourish.
Let me know if you need any further assistance!
The text was updated successfully, but these errors were encountered: