我想在运行时获取android元素的资源ID和内容描述。

我尝试了这个:

myElement.getAttribute("resource-id")
myElement.getAttribute("content-desc")

但出现错误为“this element does not have the resource-id attribute”。

有什么办法可以做到这一点?

最佳答案

根据此post,获取“content-desc”的方法是使用
myElement.getAttribute(“name”)。

10-08 15:23