Android APIs
public class

ObservableParcelable

extends ObservableField<T extends Parcelable>
implements Parcelable Serializable
java.lang.Object
   ↳ android.databinding.BaseObservable
     ↳ android.databinding.ObservableField<T extends android.os.Parcelable>
       ↳ android.databinding.ObservableParcelable<T extends android.os.Parcelable>

Class Overview

An observable class that holds a parcelable object.

Observable field classes may be used instead of creating an Observable object:

public class MyDataObject {
     public final ObservableParcelable<String> name = new ObservableParcelable<String>();
     public final ObservableInt age = new ObservableInt();
 }
Fields of this type should be declared final because bindings only detect changes in the field's value, not of the field itself.

This class is parcelable but you should keep in mind that listeners are ignored when the object is parcelled. Unless you add custom observers, this should not be an issue because data binding framework always re-registers observers when the view is bound.

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public static final Creator<ObservableParcelable> CREATOR
Public Constructors
ObservableParcelable(T value)
Wraps the given object and creates an observable object
ObservableParcelable()
Creates an empty observable object
Public Methods
int describeContents()
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
void writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel.
[Expand]
Inherited Methods
From class android.databinding.ObservableField
From class android.databinding.BaseObservable
From class java.lang.Object
From interface android.databinding.Observable
From interface android.os.Parcelable

Fields

public static final Creator<ObservableParcelable> CREATOR

Public Constructors

public ObservableParcelable (T value)

Wraps the given object and creates an observable object

Parameters
value The value to be wrapped as an observable.

public ObservableParcelable ()

Creates an empty observable object

Public Methods

public int describeContents ()

Describe the kinds of special objects contained in this Parcelable's marshalled representation.

Returns
  • a bitmask indicating the set of special object types marshalled by the Parcelable.

public void writeToParcel (Parcel dest, int flags)

Flatten this object in to a Parcel.

Parameters
dest The Parcel in which the object should be written.
flags Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.