androidandroid-databindingbindable

android databinding using "&&" logical operator


I am trying to use the and "&&" operator in xml using Android databinding,

android:visibility="@{(bean.currentSpaceId == bean.selectedSpaceId **&&** bean.currentSpaceId > 0)? View.VISIBLE: View.GONE}"

but I got the compilation error:

Error:Execution failed for task ':app:dataBindingProcessLayoutsDevDebug'. org.xml.sax.SAXParseException; systemId: file:/Users/path/app/build/intermediates/res/merged/dev/debug/layout/fragment_space.xml; lineNumber: 106; columnNumber: 89; The entity name must immediately follow the '&' in the entity reference.

and red highlight error in android studio "unescaped & or non terminated character".

So how should I fix this?

Edit: found the answer, these character needs to be escaped:

'&' --> '&'

'<' --> '&lt;'

'>' --> '&gt;'

Solution

  • && should be rendered as &amp;&amp;.

    The official data binding guide has examples of comparison operators where these XML entities are used, for example

    android:visibility="@{age &lt; 13 ? View.GONE : View.VISIBLE}"
    

    Edit

    The example expressions I mentioned in the answer disappeared from the English version of the docs since this answer was written. They do survive in some outdated non-English versions of the docs such as the Spanish version.

    Either way, the original answer is still valid, because the use of XML entities in XML is standard in XML and has nothing to do with Android itself.