以上 xml 代码仅用于为以下条件设置文本, if(sample.length>0){ textId.setText("first") -6ren">
gpt4 book ai didi

android - 如何在 xml 中的三元运算符中使用三元条件,同时使用 android 数据绑定(bind)将数据设置为 TextView

转载 作者:搜寻专家 更新时间:2023-11-01 09:25:19 24 4
gpt4 key购买 nike

 <TextView
android:text="@{viewModel.sample.length>0?"first":"sorry"}"
---/>

以上 xml 代码仅用于为以下条件设置文本,

if(sample.length>0){
textId.setText("first")
}else{
textId.setTex("sorry")
}

但是,对于以下情况,我如何在 xml 中处理?

if(sample.length>0){
textId.setText("first")
}else if(sample.length>5){
textId.setTex("second")
}else{
textId.setTex("sorry")
}

最佳答案

We can use ternary condition inside another Ternary operator as well.

您可以像这样使用三元运算符:-

   <TextView
android:text="@{viewModel.sample.length>5 ? "second" : viewModel.sample.length>0?"first":"sorry"}"
----/>

关于android - 如何在 xml 中的三元运算符中使用三元条件,同时使用 android 数据绑定(bind)将数据设置为 TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51171317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com