Ui Automator Viewer 中的content-desc标签的作用

1.下载一个TalkBack;

2.设置-语音及输入法-设置为英语;

3.点击设置了android:contentdescription="hello"标签的button;

4.发出了声音:hello button


使用Ui Automator Viewer查看布局,可以看到次Button的属性 content-desc为hello,此时可以通过UiSelector类的下面的方法,获取到此控件

description(String desc)

Set the search criteria to match the content-description property for a widget.


参考链接:

http://stackoverflow.com/questions/11595828/what-is-androidcontentdescription-string-desc-in-imageviews-xml

http://developer.android.com/guide/topics/ui/accessibility/apps.html

你可能感兴趣的:(Ui Automator Viewer 中的content-desc标签的作用)