数据绑定不是更新视图

时间:2017-12-14 10:46:54

标签: android mvvm

我正在尝试从我的viewmodel类更新视图,但它无法正常工作。这是我的xml文件

   

<data>

    <variable
        name="mainViewModel"
        type=".MainViewModel" />
</data>

<RelativeLayout 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="@color/black"
            android:elevation="4dp" />

        <View
            android:layout_width="match_parent"
            android:layout_height="4dp"
            android:background="@color/base_color" />

        <TextView
            android:id="@+id/personalNumber"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/text_border"
            android:gravity="center_vertical"
            android:padding="8dp"
            android:text="@{String.valueOf(mainViewModel.personalNumber)}"
            android:textSize="16sp" />

        <TextView
            android:id="@+id/location"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/text_border"
            android:gravity="center_vertical"
            android:padding="8dp"
            android:text="@{mainViewModel.location}"
            android:textSize="16sp" />

        <TextView
            android:id="@+id/ordersCount"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/text_border"
            android:gravity="center_vertical"
            android:padding="8dp"
            android:text="@{mainViewModel.ordersCount}"
            android:textSize="16sp" />

        <Button
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:layout_marginTop="30dp"
            android:background="@drawable/main_activity_buttons"
            android:textColor="@color/white" />
    </LinearLayout>
</RelativeLayout>
</layout>

MainViewModel类

public class MainViewModel extends BaseObservable {

private int ordersCount;

@Bindable
public int getPersonalNumber() {
    return MyApplication.getClientPreferences().getPersonalNumber();
}

@Bindable
public String getLocation() {
    return MyApplication.getClientPreferences().getLocation();
}

@Bindable
public String getOrdersCount(){
    return 

MyApplication.getInstance()getResources()的getString(R.string.orders_count,ordersCount);     }

public void setOrdersCount(int ordersCount) {
    this.ordersCount = ordersCount;
    notifyPropertyChanged(this.ordersCount);
    Toast.makeText(MyApplication.getInstance(), String.valueOf(ordersCount), Toast.LENGTH_SHORT).show();
}
}

我尝试使用Observable字段来更新MainViewModel中的视图并且它有效。但它不能通过从BaseObservable扩展MainViewModel

来实现

2 个答案:

答案 0 :(得分:4)

请使用以下属性更新数据:

notifyPropertyChanged(BR.ordersCount); 

当通知任何侦听器时,BR是生成的类,BR.ordersCount在运行时将您的值更新为Textview。

还定义如下:

<variable
        name="mainViewModel"
        type="com.app.YourAppName.MainViewModel" /> 

如果在那里有任何包,那么也定义它的绝对路径。

还设置如下值:

<TextView
            android:id="@+id/ordersCount"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/text_border"
            android:gravity="center_vertical"
            android:padding="8dp"
            android:text="@={mainViewModel.ordersCount}"
            android:textSize="16sp" />

希望这对你有所帮助。

答案 1 :(得分:1)

你可能没有打电话

yourBindingObject.setMianViewModel(mainViewModelObj);

试试这个让我知道