gpt4 book ai didi

android - 如何通过 Android 布局 xml 中的数据绑定(bind)更改背景?

转载 作者:行者123 更新时间:2023-12-03 10:31:57 25 4
gpt4 key购买 nike

我想使用以下代码来更改 ConstraintLayout 的背景。

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<data>
<import type="android.view.View"/>
<import type="com.example.test.R" />
<variable
name="viewModel"
type="com.example.test.viewModel.MainViewModel"/>

</data>

<android.support.constraint.ConstraintLayout
android:id="@+id/layoutOtpRoot"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
android:background="@{viewModel.isCheck() ? @android:color/pinkColor : @android:drawable/bg}">

</android.support.constraint.ConstraintLayout>
</layout>

但它不起作用,背景没有显示任何东西,我也尝试了以下......它仍然不起作用
android:background="@{viewModel.isCheck() ? color.pinkColor : R.drawable.bg}"

我确信 viewModel.isCheck()正在工作,但背景没有显示任何内容。

我错过了什么吗?提前致谢。

最佳答案

大概吧 。

  android:background="@{viewModel.isCheck() ? @color/pinkColor : @drawable/bg}"

关于android - 如何通过 Android 布局 xml 中的数据绑定(bind)更改背景?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55998206/

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