Skip to content

1. Basic Usage

Faruk Toptaş edited this page Oct 8, 2017 · 2 revisions

Focus only once a view with title

new FancyShowCaseView.Builder(this)
        .focusOn(view)
        .title("Focus on View")
        .showOnce("fancy1")
        .build()
        .show();

Rounded Rectangle Focus

new FancyShowCaseView.Builder(this)
        .focusOn(view)
        .title("Rounded Rectangle Focus")
        .showOnce("fancy2")
        .focusShape(FocusShape.ROUNDED_RECTANGLE)
        .roundRectRadius(90)
        .build()
        .show();

Show without focusing a view

new FancyShowCaseView.Builder(this)
        .title("Show without focusing a view")
        .showOnce("fancy3")
        .build()
        .show();

Always show

new FancyShowCaseView.Builder(this)
        .focusOn(view)
        .title("Focus on View")
        .build()
        .show();