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
Is your feature request related to a problem? Please describe.
In relation to this issue #4373, we have noticed that when we have talkback enabled and we are switching between activities/fragments, talkback reads the word ownCloud for each change.
This is not accessible to users, since the word ownCloud does not provide much information to define which view the user is on.
Describe the solution you'd like
A possible solution would be to add the android:label in the AndroidManifest.xml in each activity to the correct name.
Is your feature request related to a problem? Please describe.
In relation to this issue #4373, we have noticed that when we have talkback enabled and we are switching between activities/fragments, talkback reads the word
ownCloud
for each change.This is not accessible to users, since the word
ownCloud
does not provide much information to define which view the user is on.Describe the solution you'd like
A possible solution would be to add the
android:label
in theAndroidManifest.xml
in each activity to the correct name.In the case of fragments, we must change the label through the
setTitle
. Example below:activity?.setTitle("The new label here")
Doc: https://stackoverflow.com/questions/27918701/android-fragment-change-title
TASKS
The text was updated successfully, but these errors were encountered: