We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3540f1f + 2f4bf52 commit 52832e0Copy full SHA for 52832e0
1 file changed
core/java/android/widget/TextView.java
@@ -8355,7 +8355,7 @@ private void createEditorIfNeeded() {
8355
*/
8356
@Override
8357
public CharSequence getIterableTextForAccessibility() {
8358
- if (getContentDescription() == null) {
+ if (!TextUtils.isEmpty(mText)) {
8359
if (!(mText instanceof Spannable)) {
8360
setText(mText, BufferType.SPANNABLE);
8361
}
0 commit comments