CircularRevealHelper.Delegate

public static interface CircularRevealHelper.Delegate

com.google.android.material.circularreveal.CircularRevealHelper.Delegate


Delegate interface to be implemented by the CircularRevealWidget that owns this helper.

Summary

Public methods

abstract void actualDraw(Canvas canvas)

Calls super#draw(Canvas).

abstract boolean actualIsOpaque()

Calls super#isOpaque().

Public methods

actualDraw

public abstract void actualDraw (Canvas canvas)

Calls super#draw(Canvas).

The delegate should override View.draw(Canvas) to call the corresponding method in CircularRevealHelper if the helper is non-null.

Parameters
canvas Canvas

actualIsOpaque

public abstract boolean actualIsOpaque ()

Calls super#isOpaque().

The delegate should override View.isOpaque() to call the corresponding method in CircularRevealHelper if the helper is non-null.

Returns
boolean