gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 13:03:11 26 4
gpt4 key购买 nike

我正在尝试使用 Android 数据绑定(bind)功能将一个简单的字符串从我的主布局传递到布局。它编译得很好,但传递给 include 的值实际上并没有被传递。即 - 它没有出现在我的布局中。

<?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>

我的包含布局是:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<variable name="mytitle" type="java.lang.String"/>
</data>

<android.support.constraint.ConstraintLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:background="@color/black_background"
android:layout_height="match_parent">

<TextView
android:id="@+id/category_header_textview"
style="@style/WhiteText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{mytitle}"
app:layout_constraintStart_toStartOf="parent" />

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

最佳答案

好的。弄清楚了。在这里张贴给其他人。我缺少的东西实际上是使用 DataBindingUtil 来设置内容 View 。

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

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

关于android - 通过数据绑定(bind)将字符串传递给包含的布局不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52452306/

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