Back to project page Calma.
The source code is released under:
Apache License
If you think the Android project Calma listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.espian.showcaseview.drawing; /*from w w w . j ava 2 s.c om*/ import com.espian.showcaseview.utils.ShowcaseAreaCalculator; import android.graphics.Canvas; /** * Created by curraa01 on 13/10/2013. */ public interface ClingDrawer extends ShowcaseAreaCalculator { void drawShowcase(Canvas canvas, float x, float y, float scaleMultiplier, float radius); int getShowcaseWidth(); int getShowcaseHeight(); }