to top
Android APIs
Added in API level 16
public static interface

ViewTreeObserver.OnDrawListener

android.view.ViewTreeObserver.OnDrawListener

Class Overview


Interface definition for a callback to be invoked when the view tree is about to be drawn.

Summary


Public Methods

? Examples
abstract void onDraw()

Callback method to be invoked when the view tree is about to be drawn.

Public Methods


public abstract void onDraw ()

Added in API level 16

Callback method to be invoked when the view tree is about to be drawn. At this point, views cannot be modified in any way.

Unlike with ViewTreeObserver.OnPreDrawListener, this method cannot be used to cancel the current drawing pass.

An ViewTreeObserver.OnDrawListener listener cannot be added or removed from this method.

Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.