Using conditional operators in Binding

Updated 14 July 2023

Save

In android data binding, we can use conditional operators to decide what value to be assigned to a particular attribute. The attribute can visibility, background, text etc. so that you can select the value based on your condition only in the layout and don’t have to worry about that in the code.

The conditional operators can be used as

You can also use Null Coalescing Operator. In this if the first value is null the view shows the next value. Forexample I have a view to show the name of a user and I have two variables as Name and LastName. So in case there is null value in Name I want the view to show LastName, then we can simply state this as:

These are only few of the mentions, there is large list of operations you can do in your xml layout with data binding that reduces conditional code in your activity/fragment. You can found more information about these over here.

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home