是否可以使用android Data Binding编写switch case?
假设我有3个条件,如
value == 1 then print A
value == 2 then print B
value == 3 then print C
有没有办法使用数据绑定在xml中执行此操作?
我知道我们可以实现像
这样的条件语句android:visibility="@{age < 13 ? View.GONE : View.VISIBLE}"
但是我在这里搜索switch case语句。
答案 0 :(得分:5)
不,据我所知,这是不可能的,也会使xml文件真的不可读。我认为最好在业务逻辑中实现它,而不是在布局文件中实现。
答案 1 :(得分:2)
这在单独的java类中的业务逻辑中肯定更好,但如果你想在xml文件中使用数据绑定,那么你必须使用更多的内联if语句来做这个:
android:text='@{TextUtils.equals(value, "1") ? "A" : TextUtils.equals(value, "2") ? "B" : TextUtils.equals(value, "3") ? "C" : ""}'
如你所见,你必须在else状态下添加每一个下一个条件,这使得阅读一切都很糟糕。
答案 2 :(得分:1)
我会使用BindingAdapter
。例如,可以像这样将枚举映射到TextView中的字符串(此示例使用枚举,但是它可以与int或在switch语句中可以使用的任何其他对象一起使用)。将其放在您的Activity类中:
@BindingAdapter("enumStatusMessage")
public static void setEnumStatusMessage(TextView view, SomeEnum theEnum) {
final int res;
if (result == null) {
res = R.string.some_default_string;
} else {
switch (theEnum) {
case VALUE1:
res = R.string.value_one;
break;
case VALUE2:
res = R.string.value_two;
break;
case VALUE3:
res = R.string.value_three;
break;
default:
res = R.string.some_other_default_string;
break;
}
}
view.setText(res);
}
然后在您的布局中:
<TextView
app:enumStatusMessage="@{viewModel.statusEnum}"
tools:text="@string/some_default_string"
android:id="@+id/statusText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="24dp"/>
在注释和XML标记中记下名称enumStatusMessage
。