3

I would like to have 3 to 4 slides/pages to show a tutorial as of how the application works. This would only show up the first time the application starts after that, THE NEXT TIME the app is opened it will not show up again but go straight into the application.

I have the code to do the ViewPager already.

Suragch
  • 484,302
  • 314
  • 1,365
  • 1,393
user2765734
  • 53
  • 2
  • 7

1 Answers1

2

You can save your app version code in your SharedPreferences. Whenever the app starts, check to see if the current version code is higher than the saved code. If it is, then you can show the ViewPager tutorial. See this answer for more.

Other Links

Suragch
  • 484,302
  • 314
  • 1,365
  • 1,393