public
static
interface
View.OnAttachStateChangeListener
android.view.View.OnAttachStateChangeListener |
Interface definition for a callback to be invoked when this view is attached or detached from its window.
Public methods | |
---|---|
abstract
void
|
onViewAttachedToWindow(View v)
Called when the view is attached to a window. |
abstract
void
|
onViewDetachedFromWindow(View v)
Called when the view is detached from a window. |
void onViewAttachedToWindow (View v)
Called when the view is attached to a window.
Parameters | |
---|---|
v |
View :
The view that was attached
|
void onViewDetachedFromWindow (View v)
Called when the view is detached from a window.
Parameters | |
---|---|
v |
View :
The view that was detached
|