Android databinding on inner class not updating TextView

女生的网名这么多〃 提交于 2019-12-20 06:41:14

问题


App runs but the TextView doesn't get update here is the relevant code.

activity_picker_dashboard.xml

<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="match_parent">

    <!-- Top header -->

    <include layout="@layout/layout_header" /> This layout has databinding

    <!-- DrawerLayout -->

    <android.support.v4.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="@color/gray"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/toolbar">
.....

Here is layout_header.xml

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
    <data>
        <variable
            name="profilePayload"
            type="myms.models.ProfileResponse.Payload"/>
    </data>

<Toolbar
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:padding="8dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white">

<android.support.constraint.ConstraintLayout
    android:id="@+id/header"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"

    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <ImageView
        android:layout_width="180dp"
        android:layout_height="60dp"
        android:adjustViewBounds="true"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:src="@drawable/logo_color"/>

    <TextView
        android:id="@+id/username"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:text="@{profilePayload.firstName}" Here it is
        android:textColor="@color/red"
        android:textSize="18sp"
        app:layout_constraintBottom_toTopOf="@+id/role"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_chainStyle="packed" />

...............
</Toolbar>
</layout>

Here is my model ProfileResponse.java

public class ProfileResponse
{
    public Payload getPayLoad() {
        return payLoad;
    }

    @SerializedName("Payload")
    private Payload payLoad;

    public static class Payload
    {
        public String getProfileId() {
            return profileId;
        }

        public String getUserId() {
            return userId;
        }

        public String getFirstName() {
            return firstName;
        }

        public String getLastName() {
            return lastName;
        }

        @SerializedName("ProfileId")
        private String profileId;

        @SerializedName("UserId")
        private String userId;

        public void setFirstName(String firstName) {
            this.firstName = firstName;
        }

        public void setLastName(String lastName) {
            this.lastName = lastName;
        }

        @SerializedName("FirstName")

        private String firstName;

        @SerializedName("LastName")
        private String lastName;
    }
}

And finally here is my activity

 public class PickerDashboardActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_picker_dashboard);

        LayoutHeaderBinding binding = LayoutHeaderBinding.inflate(getLayoutInflater());

        ProfileResponse.Payload profilePayload = new ProfileResponse.Payload();
        profilePayload.setFirstName("Test");

        binding.setProfilePayload(profilePayload);

        ButterKnife.bind(this);
}

Please suggest a solution. I have been trying this for quite some time now. P.S: I'm also using butter knife.


回答1:


The problem is in how you're mixing data binding layouts with regular layouts.

If you want to include a data binding layout from a regular layout, you need to find the root view of the layout and call bind() on it. Maybe something like this:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_picker_dashboard);
    View bindingRoot = findViewById(R.id.toolbar);

    LayoutHeaderBinding binding = LayoutHeaderBinding.bind(bindingRoot);

    ProfileResponse.Payload profilePayload = new ProfileResponse.Payload();
    profilePayload.setFirstName("Test");

    binding.setProfilePayload(profilePayload);
}

However, it is better to make your Activity's layout a data binding layout and you won't have to do that extra work:

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
    <data>
        <variable
            name="profilePayload"
            type="myms.models.ProfileResponse.Payload"/>
    </data>
    <android.support.constraint.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <!-- Top header -->

        <include layout="@layout/layout_header" app:profilePayload="@{profilePayload}" />

        <!-- DrawerLayout -->
    </android.support.constraint.ConstraintLayout>
</layout>

And then your binding code is much simpler and less error prone:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    ActivityPickerDashboardBinding binding = 
        DataBindingUtil.setContentView(this, R.layout.activity_picker_dashboard);

    ProfileResponse.Payload profilePayload = new ProfileResponse.Payload();
    profilePayload.setFirstName("Test");

    binding.setProfilePayload(profilePayload);
}

On a different note, I think Android data binding and butterknife have significant overlap in functionality and I would recommend choosing one or the other, but not both.



来源:https://stackoverflow.com/questions/45143721/android-databinding-on-inner-class-not-updating-textview

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!