The method getTextContent() is undefined for the type Element

如果你在编译Android项目的时候发生下面错误
The method getTextContent() is undefined for the typeElement, 一般原因是你选择了Android projecttarget版本太低,getTextContent()与setTextContent()是高版本Android的提供的,修改方法一是提升Android的版本,或者你可以用getFirstChild().getNodeValue()来替换。

你可能感兴趣的:(The method getTextContent() is undefined for the type Element)