public static interface View.OnLayoutChangeListener
Modifier and Type | Method and Description |
---|---|
void |
onLayoutChange(View v,
int left,
int top,
int right,
int bottom,
int oldLeft,
int oldTop,
int oldRight,
int oldBottom)
Called when the focus state of a view has changed.
|
void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom)
v
- The view whose state has changed.left
- The new value of the view's left property.top
- The new value of the view's top property.right
- The new value of the view's right property.bottom
- The new value of the view's bottom property.oldLeft
- The previous value of the view's left property.oldTop
- The previous value of the view's top property.oldRight
- The previous value of the view's right property.oldBottom
- The previous value of the view's bottom property.