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.
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
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
ownCloudfor each change.This is not accessible to users, since the word
ownClouddoes 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:labelin theAndroidManifest.xmlin 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