欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

databinding 结合RecyclerView 适配器带来的坑 不显示数据

程序员文章站 2022-05-25 20:57:58
...

有一个Recyclerview item布局的显示使用了databinding

item布局类似这样

<?xml version="1.0" encoding="utf-8"?>
<layout>

    <data>

        <variable
            name="name"
            type="String" />
    </data>

    <android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:textSize="@dimen/font_size_small"
            android:textColor="@color/white"
            android:gravity="center"
            android:layout_marginBottom="@dimen/dimen_14"
            android:background="@drawable/bg_list_btn"
            android:id="@+id/dept_name"
            android:layout_width="@dimen/dimen_92"
            android:layout_height="@dimen/dimen_20"
            android:text="@{name}"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    </android.support.constraint.ConstraintLayout>
</layout>

在Adapter的bind()方法中,通过setText方法设置了需要显示的文字。

            @Override
            public void bind(BindViewHolder<DepartmentInfo, ItemAddressBookDeptBinding> viewHolder, int position) {
                viewHolder.getViewDataBinding().deptName.setText(getItem(position).getDeptName());
                }

然而,最终列表显示不出来。

原来布局文件中通过binding的方式设置的文本

android:text="@{name}"

setText方法被这个绑定方法覆盖掉了。

所以在Adapter的bind()方法中改为为binding变量赋值即可

            @Override
            public void bind(BindViewHolder<DepartmentInfo, ItemAddressBookDeptBinding> viewHolder, int position) {
                viewHolder.getViewDataBinding().setName(getItem(position).getDeptName());
                }