I want to show a UI for explaining the app.It exists in many apps. It's shown when the user start the app for the first time. Unfortunately I don't have an image to explain, so I hope somebody will understand what I'm talking about.
Thanks.
I want to show a UI for explaining the app.It exists in many apps. It's shown when the user start the app for the first time. Unfortunately I don't have an image to explain, so I hope somebody will understand what I'm talking about.
Thanks.
I recommend to do prior searching before posting a question.
Anyways here are couple of libraries which will definitely help you to achieve your goal.
I think you ask for Use ShowCase View
Use ShowcaseView Library, Add by:
compile 'com.github.amlcurran.showcaseview:library:5.4.0'
To use it:
new ShowcaseView.Builder(this) .setTarget(new ActionViewTarget(this, ActionViewTarget.Type.HOME)) .setContentTitle("ShowcaseView") .setContentText("This is highlighting the Home button") .hideOnTouchOutside() .build();