gpt4 book ai didi

Android:使用数据绑定(bind)的 CardView 前台

转载 作者:太空狗 更新时间:2023-10-29 14:49:58 26 4
gpt4 key购买 nike

我正在尝试用 CardView 填充我的 RecyclerView,CardView 使用 Android 数据绑定(bind)来设置属性,例如 TextView 中的文本。在未完成喷射的项目上,我想添加一个灰色覆盖层。但不幸的是,前景 android:foreground="@{viewModel.getState != State.FINISHED? @color/gray_transparent54 : null}"> 没有应用。另一方面,如果我强制使用前景色 android:foreground="@grey_transparent54">,它会正常工作。

<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data class="ListItemBinder">
<import type="myProject.State"/>
<import type="android.view.View"/>
<variable
name="viewModel"
type="myProject.ListItemViewModel"/>
</data>

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="80dp"
card_view:cardCornerRadius="4dp"
android:foreground="@{viewModel.getState != State.FINISHED? @color/gray_transparent54 : null}">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{viewModel.getName}"
tools:text="Name"
android:textColor="@color/color_text_primary"
android:textSize="24sp"/>
</android.support.v7.widget.CardView>
</layout>

提前致谢。

最佳答案

除非您已经实现了像 getGetState()getGetName() 这样的 getter,否则我认为您正在错误地访问您的 viewModel 字段。虽然你没有发布你的 ListItemViewModel 我怀疑你需要更接近于此的东西:

<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="80dp"
card_view:cardCornerRadius="4dp"
android:foreground="@{viewModel.state != State.FINISHED? @color/gray_transparent54 : null}">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{viewModel.name}"
tools:text="Name"
android:textColor="@color/color_text_primary"
android:textSize="24sp"/>
</android.support.v7.widget.CardView>

当您访问 @{viewModel.name} 时,数据绑定(bind)会自动在您的 ListItemViewModel 类中查找名为“getName()”的方法,“getState()”你访问 @{viewModel.state}

注意:虽然 UI 逻辑通常没问题,但要小心将业务逻辑放在您的 XML 中,因为它会限制您的灵 active 并使测试/调试更加困难。

还知道在使用三元 (?:) 运算符时不能混合类型,因此在 color int 和 drawable 之间进行选择之类的操作将不起作用。但是,您可以使用自定义 BindingAdapter 方法轻松解决此问题,例如制作一个将您的 ListItemViewModel 作为参数的绑定(bind)适配器,并将您要设置的值类型的所有逻辑放在方法本身中。

关于Android:使用数据绑定(bind)的 CardView 前台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36084418/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com