我发现了一些有关如何在XML中为Android数据绑定实现AND
,less than
和greater than
运算符的资源。
&
-> &
<
-> <
>
-> >
但是,如何添加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}"/>```