如何通过Android布局xml中的数据绑定更改背景?

时间:2019-05-06 02:47:04

标签: android mvvm background android-databinding

我想使用下面的代码来更改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>

但是它不起作用,背景什么也没显示,我也尝试了folloeing ...并且它仍然不起作用

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

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

我错过了什么吗?预先感谢。

2 个答案:

答案 0 :(得分:2)

我想是这样。

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

答案 1 :(得分:0)

I think you can add backgroud in the layout!

<?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"
    android : background = "@color/colorPrinary"  />