gpt4 book ai didi

未显示 Android 数据绑定(bind)

转载 作者:行者123 更新时间:2023-11-30 00:23:41 25 4
gpt4 key购买 nike

我正在尝试在我的应用程序中使用数据绑定(bind),但没有显示任何内容。

这是我做的:

  • 我创建了一个包含空 Activity 的新项目。
  • 我加了

    dataBinding {
    enabled = true
    }

    到我的build.gradle

这是我的activity_main.xml

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

<data>
<variable name="game" type="my.name.bar.Bar"/>
</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:layout_height="match_parent"
tools:context="my.name.bar.MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{game.GetFoo()}"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

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

这是我的 Bar 类

    public class Bar {
private String str;

public Bar() {
str = "Foo";
}

public String GetFoo() {
return str;
}
}

但我只得到一个白屏。如果我只用“Hello World!”替换绑定(bind)然后一切正常。我做错了什么?

最佳答案

(转自评论)

您必须绑定(bind)值。在您的情况下,它是这样的:

ActivityMainBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_main);
binding.setGame(new Bar());

关于未显示 Android 数据绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45805382/

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