Many apps when I launch them for the first time, take me through a slide show. I want to do the same in my app. I have no idea how it's done and how to go about it. Is there a library that does this? What are some ways I can do this? From my question you can see I have no clue how to even start going about it; but you can also see that the question is clear. So thanks for any hint.
Asked
Active
Viewed 717 times
1
-
I think same subject is http://stackoverflow.com/questions/12013334/how-do-you-create-a-transparent-demo-screen-for-an-android-app. – Gül Yurdakul Feb 15 '15 at 17:01
3 Answers
0
Create an Activity for the instructions. Check in your MainActivity whether the app is first launched. If so, start the activity.

Longi
- 3,913
- 2
- 28
- 38
0
You have to start a new Activity for this, containing a slideshow with your instructions. First check if the tutorial has been already launched before, maybe using SharedPreferences to save the status.

Davide
- 123
- 3
- 8
-
So it is truly a slideshow? I call it a slide show, but I didn't know that it actually was. So it is truly a set of pictures that I am running in front of the user? Thanks. – Katedral Pillon Feb 15 '15 at 17:01
-
There are many styles for app tutorials, images slideshow is only one of them, and maybe the most simple to make. – Davide Feb 15 '15 at 17:05
0
I guess you are searchig for something like this or this .
And also you can use ViewPagerIndicator library.
Some other usful links:

Milad Faridnia
- 9,113
- 13
- 65
- 78