Search in sources :

Example 1 with Target

use of com.github.amlcurran.showcaseview.targets.Target in project ShowcaseView by amlcurran.

the class SingleShotActivity method onCreate.

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_single_shot);
    Target viewTarget = new ViewTarget(R.id.button, this);
    new ShowcaseView.Builder(this).setTarget(viewTarget).setContentTitle(R.string.title_single_shot).setContentText(R.string.R_string_desc_single_shot).singleShot(42).build();
}
Also used : ViewTarget(com.github.amlcurran.showcaseview.targets.ViewTarget) Target(com.github.amlcurran.showcaseview.targets.Target) ViewTarget(com.github.amlcurran.showcaseview.targets.ViewTarget) ShowcaseView(com.github.amlcurran.showcaseview.ShowcaseView)

Aggregations

ShowcaseView (com.github.amlcurran.showcaseview.ShowcaseView)1 Target (com.github.amlcurran.showcaseview.targets.Target)1 ViewTarget (com.github.amlcurran.showcaseview.targets.ViewTarget)1