Reputation: 43
This might a vague question but this is i really want to know. We developing an android application and we want to put an interactive instruction on first use of the application. What do you call the interaction of the help/instruction most of the android application do have today? Can it be done using android studio? Thanks for the response.
Upvotes: 1
Views: 438
Reputation: 2940
I think you are refering to this library https://github.com/amlcurran/ShowcaseView. I've seen it used quite often.
And it can be used with AS, just add the dependency to your build.gradle compile com.github.amlcurran.showcaseview:library:5.0.0'
Upvotes: 1
Reputation: 1170
It seems you want to add tutorial to your application and as far as I know there is no built-in component for that some applications use ViewPager for displaying tutorial at first you have to decide what you want to present.
Upvotes: 0