public abstract class ViewLayoutChangeEvent
extends java.lang.Object
Warning: Instances keep a strong reference to the view. Operators that cache
instances have the potential to leak the associated Context.
| Modifier and Type | Method and Description |
|---|---|
abstract int |
bottom() |
static ViewLayoutChangeEvent |
create(android.view.View view,
int left,
int top,
int right,
int bottom,
int oldLeft,
int oldTop,
int oldRight,
int oldBottom) |
abstract int |
left() |
abstract int |
oldBottom() |
abstract int |
oldLeft() |
abstract int |
oldRight() |
abstract int |
oldTop() |
abstract int |
right() |
abstract int |
top() |
abstract android.view.View |
view()
The view from which this event occurred.
|
public static ViewLayoutChangeEvent create(android.view.View view, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom)
public abstract android.view.View view()
public abstract int left()
public abstract int top()
public abstract int right()
public abstract int bottom()
public abstract int oldLeft()
public abstract int oldTop()
public abstract int oldRight()
public abstract int oldBottom()