如何在XML中添加OR运算符?

时间:2019-07-12 02:13:18

标签: android xml data-binding operator-keyword android-databinding

我发现了一些有关如何在XML中为Android数据绑定实现ANDless thangreater than运算符的资源。

&-> &

<-> &lt;

>-> &gt;

但是,如何添加OR运算符?我无法在Android官方文档中找到相关信息。

我已经访问了这些网站

StackOverflow --- android databinding using "&&" logical operator - Stack Overflow

StackOverflow --- android-databinding-using-logical-operator

Escape And(&&) Operator In Android Data Binding

我的预期结果:

<View
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:visibility="@{viewModel.fooBoolOne ||  viewModel.fooBoolTwo ? View.VISIBLE : View.GONE}"/>```

0 个答案:

没有答案