android databinding using "&&" logical operator android databinding using "&&" logical operator android android

android databinding using "&&" logical operator


&& should be rendered as &&.

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

android:visibility="@{age < 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.


List of HTML entities

You can not use & or some other HTML entity in XML. So you have to use escaping character.

android:text="@{(1==1 && 2>0) ? `true` : `false`}"

HTML Character entities often used in Android:

+--------+----------------------------+--+--+--+| Symbol | Equivalent HTML Entity     |  |  |  |+--------+----------------------------+--+--+--+| >      | >                       |  |  |  |+--------+----------------------------+--+--+--+| <      | <                       |  |  |  |+--------+----------------------------+--+--+--+| "      | ",  or  |  |  |  |+--------+----------------------------+--+--+--+| '      | &apos;,  or  |  |  |  |+--------+----------------------------+--+--+--+| }      | &#125;                     |  |  |  |+--------+----------------------------+--+--+--+| &      | &                      |  |  |  |+--------+----------------------------+--+--+--+| space  | &#160;                     |  |  |  |+--------+----------------------------+--+--+--+

Here is a complete list of HTML entities.


Escaping && in the layout mark-up is a very poor solution. It is better to create a method on the (view)model object:

android:visibility="@{user.adult ? View.VISIBLE : View.GONE}"public boolean isAdult() {    return age >= 18;}