通过数据绑定将字符串传递给包含的布局不起作用

时间:2018-09-21 23:59:30

标签: android android-layout android-databinding

我正在尝试使用Android数据绑定功能将简单的字符串从主布局传递到布局。它可以正常编译,但是传递给include的值实际上并未传递。即-它不会显示在我的布局中。

Future{cursor.getAll.asScala}

我的包含布局是:

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

    <data>
        <variable name="mytitle" type="java.lang.String"/>
    </data>

    <android.support.constraint.ConstraintLayout
        android:background="@color/black_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

 <include
            android:id="@+id/include1"
            layout="@layout/mylayout"
            app:mytitle="@{@string/categories}"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"/>

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

1 个答案:

答案 0 :(得分:2)

好。弄清楚了。在此发布给其他人。 我所缺少的实际上是使用DataBindingUtil设置内容视图。

将以下内容添加到您的onCreate()中:

DataBindingUtil.setContentView(this, R.layout.mylayout);