java.lang.Object | ||
↳ | android.databinding.BaseObservable | |
↳ | android.databinding.ObservableFloat |
An observable class that holds a primitive float.
Observable field classes may be used instead of creating an Observable object:
public class MyDataObject {
public final ObservableFloat temperature = new ObservableFloat();
}
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 and serializable but callbacks are ignored when the object is parcelled / serialized. Unless you add custom callbacks, this will not be an issue because data binding framework always re-registers callbacks when the view is bound.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates an ObservableFloat with the given initial value.
| |||||||||||
Creates an ObservableFloat with the initial value of
0f .
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
| |||||||||||
Set the stored value.
| |||||||||||
Flatten this object in to a Parcel.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
android.databinding.BaseObservable
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
android.databinding.Observable
| |||||||||||
From interface
android.os.Parcelable
|
Creates an ObservableFloat with the given initial value.
value | the initial value for the ObservableFloat |
---|
Creates an ObservableFloat with the initial value of 0f
.
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
Set the stored value.
Flatten this object in to a Parcel.
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 .
|