Searched defs:RemoteAnimationAdapter (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
H A DRemoteAnimationAdapter.java32 * to register a {@link RemoteAnimationAdapter} that describes how the animation should be run:
49 public class RemoteAnimationAdapter implements Parcelable { class in inherits:Parcelable
64 public RemoteAnimationAdapter(IRemoteAnimationRunner runner, long duration, method in class:RemoteAnimationAdapter
71 public RemoteAnimationAdapter(Parcel in) { method in class:RemoteAnimationAdapter
115 public static final Creator<RemoteAnimationAdapter> CREATOR
116 = new Creator<RemoteAnimationAdapter>() {
117 public RemoteAnimationAdapter createFromParcel(Parcel in) {
118 return new RemoteAnimationAdapter(in);
121 public RemoteAnimationAdapter[] newArray(int size) {
122 return new RemoteAnimationAdapter[siz
[all...]

Completed in 609 milliseconds