我想使用DataBinding库在我的视图上设置背景颜色或null
,但尝试运行它时会出现异常。
java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.Integer.intValue()' on a null object reference
我就是这样做的:
android:background="@{article.sponsored ? @color/sponsored_article_background : null}"
我也尝试过设置转换但是没有用。
@BindingConversion
public static ColorDrawable convertColorToDrawable(int color) {
return new ColorDrawable(color);
}
最终,我使用@BindingAdapter
解决了这个问题,但我想知道如何正确地做到这一点。
答案 0 :(得分:57)
首先要知道的是,DataBinding库已经在convertColorToDrawable
中提供了android.databinding.adapters.Converters.convertColorToDrawable(int)
绑定转换器。
使用android:background
应该“理论上”起作用,因为它具有相应的setBackground(Drawable)
方法。问题是,它看到您尝试将颜色作为第一个参数传递,因此它尝试在将此转换器应用于setBackground(Drawable)
方法之前启动它。如果数据绑定决定使用转换器,它将在两个参数上使用它,因此在null
之前,在将最终结果应用于setter之前。
由于null
无法成为int
(并且您无法在其上调用intValue()
),因此会抛出NullPointerException
。
有人提到官方Data Binding Guide不支持混合参数类型。
以下是此问题的两种解决方案。虽然您可以使用这两种解决方案中的任何一种,但第一种解决方案要容易得多。
<强> 1。作为drawable
如果您的颜色不是作为颜色定义,而是作为资源中的可绘制颜色(可以在我们的colors.xml文件中:
<drawable name="sponsored_article_background">#your_color</drawable>
或
<drawable name="sponsored_article_background">@color/sponsored_article_background</drawable>
那么你应该能够像你原来想要的那样使用android:background
但是提供可绘制而不是颜色:
android:background="@{article.sponsored ? @drawable/sponsored_article_background : null}"
这里的参数有兼容的类型:第一个是Drawable
,第二个是null,因此它也可以转换为Drawable
。
<强> 2。作为资源ID
app:backgroundResource="@{article.sponsored ? R.color.sponsored_article_background : 0}"
但它还需要在data
部分中添加您的R类导入:
<data>
<import type="com.example.package.R" />
<variable ... />
</data>
将0作为“空资源ID”传递是安全的,因为setBackgroundResource
View
方法检查resid
是否不同于0,并将null设置为背景可绘制。在那里没有创建不必要的透明可绘制对象。
public void setBackgroundResource(int resid) {
if (resid != 0 && resid == mBackgroundResource) {
return;
}
Drawable d= null;
if (resid != 0) {
d = mResources.getDrawable(resid);
}
setBackgroundDrawable(d);
mBackgroundResource = resid;
}
答案 1 :(得分:7)
我认为你必须尝试默认color
而不是null
android:background="@{article.sponsored ? @color/sponsored_article_background : @color/your_default_color}"
答案 2 :(得分:6)
您可以使用的一种方法是编写自定义@BindingConversion
来为您处理此问题:
@BindingConversion
public static ColorDrawable convertColorToDrawable(int color) {
return color != 0 ? new ColorDrawable(color) : null;
}
使用此功能,您可以将接受ColorDrawable
的任何属性设置为整数颜色值(如0或@android:color/transparent
),并将其自动转换为轻量级@null。
(尽管内置convertColorToDrawable(int)
转换器总是创建一个ColorDrawable
对象,即使颜色是透明的。)
注意:为了使用此方法代替内置@BindingConversion
,必须返回ColorDrawable
而不是Drawable
- 否则内置方法将被视为更具体/适当。
另一种方法是使用静态方法将颜色转换为数据绑定表达式中的Drawable
,以使值类型匹配。例如,您可以导入内置的Converters
类:
<data>
<import type="android.databinding.adapters.Converters"/>
</data>
...并写下你的表达式:
android:background="@{article.sponsored ? Converters.convertColorToDrawable(@color/sponsored_article_background) : null}"
...虽然我个人建议将这种条件逻辑放在数据绑定适配器方法中,例如使用返回Drawable的null getArticleBackground()
方法或null。通常,如果您避免将决策逻辑放在布局文件中,事情就会更容易调试和跟踪。
答案 3 :(得分:3)
您可以使用@BindingAdapter(&#34; android:background&#34;)并设置任何资源。
如果你在Kotlin写作 - 只需复制粘贴到你的项目: https://github.com/OlegTarashkevich/ObservableBackground
答案 4 :(得分:1)
试试这个:
@Bindable
private int color;
并在构造函数中
color = Color.parseColor("your color in String for examp.(#ffffff)")
xml中的:
android:textColor = "@{data.color}"
答案 5 :(得分:0)
在此article中,您可以找到两个很好的解决方案,但就我而言,这只是一种工作,因为我想更改“材质按钮”中的背景色,这是我的绑定适配器:
首先,创建一个Kotlin文件并粘贴此适配器方法:
package com.nyp.kartak.utilities
import android.content.res.ColorStateList
import androidx.databinding.BindingAdapter
import com.google.android.material.button.MaterialButton
import com.nyp.kartak.model.ReceiptUserPurchaseModel
@BindingAdapter("backgroundTintBinding")
fun backgroundTintBinding(button: MaterialButton, model: ReceiptUserPurchaseModel) {
button.backgroundTintList = ColorStateList.valueOf(button.resources.getColor( model.color))
}
第二次在您的xml中使用它:
<data>
<variable
name="model"
type="com.nyp.kartak.model.ReceiptUserPurchaseModel" />
</data>
// .....
<com.google.android.material.button.MaterialButton
android:id="@+id/payBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{model.getAction()}"
app:backgroundTintBinding="@{model}" />
答案 6 :(得分:0)
这确实是老文章,但我想提出另一种解决方案。
我有四种相似的样式,所以我只粘贴其中一种。
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/colorAccent">
<item>
<layer-list>
<item>
<shape android:shape="oval">
<stroke
android:width="1dp"
android:color="@color/colorAccent" />
<solid android:color="@color/colorPrimaryDark" />
<size
android:width="200dp"
android:height="200dp" />
</shape>
</item>
<item
android:width="100dp"
android:height="100dp"
android:gravity="center"
android:drawable="@drawable/ic_car_white" />
</layer-list>
</item>
</ripple>
设置此样式后,我的按钮如下所示:
就我而言,我在ActivityMainEventHandler类中有以下代码
@Bindable
public Drawable getConenctButtonStyle() {
// here i'm checking connection state but you can do own conditions
ConnectionState state = Communication.getInstance().getConnectionState();
if (state != null) switch (state) {
case CONNECTED:
return ctx.getDrawable(R.drawable.circle_btn_state_green);
case CONNECTING:
case DISCONNECTING:
return ctx.getDrawable(R.drawable.circle_btn_state_orange);
case DISCONNECTED:
return ctx.getDrawable(R.drawable.circle_btn_state_red);
}
return ctx.getDrawable(R.drawable.circle_btn_state_first);
}
活动onCreate:
bind = DataBindingUtil.setContentView(this, R.layout.activity_main);
handler = new ActivityMainEventHandler(this, bind);
bind.setMainHandler(handler);
我们活动的XML
<data>
<variable
name="mainHandler"
type="xx.xxx.packagename.eventHandlers.ActivityMainEventHandler" />
</data>
标记:
android:background="@{mainHandler.conenctButtonStyle}"
代码:
//BR.conenctButtonStyle it's automatically generated id
bind.notifyPropertyChanged(BR.conenctButtonStyle);
答案 7 :(得分:0)
另一种解决方案,如果您只想设置backgroundTint
,而不是整个background
,则可以这样使用:
如果您的最小api为21,则需要导入ContextCompat
:
<import type="androidx.core.content.ContextCompat" />
...
app:backgroundTintList="@{ContextCompat.getColorStateList(context, [funtion_to_get_your_color_res_id]))}"