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.utils; //from w w w. j a v a2 s .c o m import android.graphics.Rect; /** * Class responsible for calculating where the Showcase should position itself */ public interface ShowcaseAreaCalculator { boolean calculateShowcaseRect(float showcaseX, float showcaseY); Rect getShowcaseRect(); }