0

I want to create a sort of tutorial for the first time users of my app. What is the correct way to go forward? Should I use .png s or some other method?

1 Answers1

1

Generally, a ViewPager is used to show those type of tutorials. You can look at this simple tutorial on how to use viewpager for screen slides. Then you can either have pngs on different fragments or also have different layouts depending upon your requirements.

Antrromet
  • 15,294
  • 10
  • 60
  • 75
  • But then how is it limited to just the uses who open the app for very first time and doesn't show up the next time they open the app? – nothingwhatsoever Aug 11 '15 at 10:45
  • Use [SharedPreferences](http://developer.android.com/reference/android/content/SharedPreferences.html) to store a boolean value that determines whether the tutorial has been shown or not. And each time the app is opened, check against that boolean. – Antrromet Aug 11 '15 at 16:56