How can I display the Tab Target only once when opening the activity for the first time? This is my code :
textView = findViewById(R.id.main_title_activity_text);
new TapTargetSequence(this)
.targets(
TapTarget.forView(textView,"Button 1","This is Button 1")
.outerCircleColor(R.color.orange)
.outerCircleAlpha(0.96f)
.targetCircleColor(R.color.white)
.titleTextSize(20)
.titleTextColor(R.color.white)
.descriptionTextSize(10)
.descriptionTextColor(R.color.black)
.textColor(R.color.black)
.textTypeface(Typeface.SANS_SERIF)
.dimColor(R.color.black)
.drawShadow(true)
.cancelable(false)
.tintTarget(true)
.transparentTarget(true)
.targetRadius(60)
);