Questions tagged «bindable»

4
使用“ &&”逻辑运算符的android数据绑定
我正在尝试使用Android数据绑定在xml中使用and“ &&”运算符, android:visibility="@{(bean.currentSpaceId == bean.selectedSpaceId **&&** bean.currentSpaceId > 0)? View.VISIBLE: View.GONE}" 但是我得到了编译错误: 错误:任务':app:dataBindingProcessLayoutsDevDebug'的执行失败。org.xml.sax.SAXParseException; systemId:文件:/Users/path/app/build/intermediates/res/merged/dev/debug/layout/fragment_space.xml;lineNumber:106;columnNumber:89;实体名称必须紧随实体引用中的“&”之后。 和红色突出显示Android Studio中的错误“未转义和/或未终止的字符”。 那么我该如何解决呢? 编辑: 找到答案,这些字符需要转义: '&' --> '&' '<' --> '<' '>' --> '>'
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.