<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")
}