我是android数据绑定库的新手。
我有很多警告,比如:
warning: viewModel.someBoolean.getValue() is a boxed field but needs to be un-boxed to execute android:checked. This may cause NPE so Data Binding will safely unbox it. You can change the expression and explicitly wrap viewModel.someBoolean.getValue() with safeUnbox() to prevent the warning
定义如下:
在ViewModel
val someBoolean: MutableLiveData<Boolean> = MutableLiveData()
在Layout
<RadioButton
android:id="@+id/someBooleanRadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="@={viewModel.someBoolean}"
android:text="@string/boolean_description" />
我试图通过添加safeunbox()来修复它:
<RadioButton
android:id="@+id/someBooleanRadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="@={safeUnbox(viewModel.someBoolean)}"
android:text="@string/boolean_description" />
但我得到编译错误:
msg:cannot find method safeUnbox(java.lang.Boolean) in class android.databinding.ViewDataBinding
已经定义了梯度
dataBinding {
enabled = true
}
和
kapt 'com.android.databinding:compiler:3.1.4'
你有什么想法吗?
安卓工作室3.1.4
等级4.4
科特林1.2.61
P.S.刚收到问题的复制件。所有的问题都是关于如何修复警告,但我的问题是,当您添加
safeUnbox()
最佳答案
我讲的是布尔运算,这个解对于整数、双精度、字符等都是一样的。
如果使用双向绑定,则不能使用safeUnbox()
方式,因为safeUnbox()
will not be inverted。
<variable
name="enabled"
type="Boolean"/>
....
<Switch
android:checked="@={enabled}"
/>
解决方案1
将
Boolean
更改为原始类型boolean
。所以它永远不为空,boolean
的default value是假的。<variable
name="enabled"
type="boolean"/>
解决方案2
安全盒和安全盒的制作方法还有很长的路要走。See here
什么是safeunbox()方法?
safeUnbox()
只需检查空值并返回非空值。您可以看到下面在数据绑定库中定义的方法。public static int safeUnbox(java.lang.Integer boxed) {
return boxed == null ? 0 : (int)boxed;
}
public static long safeUnbox(java.lang.Long boxed) {
return boxed == null ? 0L : (long)boxed;
}
public static short safeUnbox(java.lang.Short boxed) {
return boxed == null ? 0 : (short)boxed;
}
public static byte safeUnbox(java.lang.Byte boxed) {
return boxed == null ? 0 : (byte)boxed;
}
public static char safeUnbox(java.lang.Character boxed) {
return boxed == null ? '\u0000' : (char)boxed;
}
public static double safeUnbox(java.lang.Double boxed) {
return boxed == null ? 0.0 : (double)boxed;
}
public static float safeUnbox(java.lang.Float boxed) {
return boxed == null ? 0f : (float)boxed;
}
public static boolean safeUnbox(java.lang.Boolean boxed) {
return boxed == null ? false : (boolean)boxed;
}