- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了这个 BindingConversion:
@BindingConversion
public static String convertDateToFormat(Date date, String format) {
return new SimpleDateFormat(format).format(date);
}
在我的布局文件中:
<TextView
android:text="@{BindingUtils.convertDateToFormat(schedule.dateStart, `EEEE`)}"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textView2"/>
但是构建失败。
谁能解释一下如何将多个参数传递给和绑定(bind)转换?
最佳答案
来自 Android documation
The converter should take one parameter, the expression type, and the return value should be the target value type used in the setter
目前不支持有参数。
您可以改为使用 BindingAdapter:
@BindingAdapter({ "date", "format" })
public static void bindDate(final TextView view, final ZonedDateTime date, final String format) {
if (date != null) {
view.setText(DateTimeFormatter.ofPattern(format).format(date));
}
}
关于Android BindingConversion 多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40595770/
我写了这个 BindingConversion: @BindingConversion public static String convertDateToFormat(Date date, Stri
为什么不能在 android 数据绑定(bind)库中定义泛型绑定(bind)转换? @BindingConversion public static T convertMyClass(MyClas
我尝试在 Kotlin 中实现 BindingConversion,但无法正常工作。 在 Java 类中的 BindingConversion 中尝试了相同的操作,它似乎可以工作。也许我只是误解了它的
我做了一个从 boolean 值到可见性的 BindingConversion,但是 Android 找不到它,但只有当我在 include 标记中使用它时。它适用于 FrameLyout 等其他元素
official documentation on custom conversions in Android Data Binding非常少。它说创建一个带有方法签名的静态转换器来匹配转换,并用@B
我是一名优秀的程序员,十分优秀!