I posted a demo apk here before: http://www.b4x.com/forum/basic4android-share-your-creations/30961-startup-wizard.html
StartupWizard basically shows a startup guide, or help screen or settings screen, on the first launch of an app.
This is basically comprising of a couple of components:
- ViewPager
- PageIndicators
- Footer (Buttons for Next/Skip)
It will expose some panels, and you will have to add your own layout/views to these panels (since they are app-specific).
It uses 2 Classes:
clsStartWizard
- Uses ViewPager by corwin42
clsPageIndicator
- Uses AnimationPlus by Informatix (for Animation Interpolation), you can use Animation too but remove Interpolation
The Demo itself also uses:
- LabelExtras by warwound, to generate hyperlinks in a label
- RichString by agraham to format a label
- StringUtils by Erel to find the height of a label
All the source code and files are included here.
StartupWizard basically shows a startup guide, or help screen or settings screen, on the first launch of an app.
This is basically comprising of a couple of components:
- ViewPager
- PageIndicators
- Footer (Buttons for Next/Skip)
It will expose some panels, and you will have to add your own layout/views to these panels (since they are app-specific).
It uses 2 Classes:
clsStartWizard
- Uses ViewPager by corwin42
clsPageIndicator
- Uses AnimationPlus by Informatix (for Animation Interpolation), you can use Animation too but remove Interpolation
The Demo itself also uses:
- LabelExtras by warwound, to generate hyperlinks in a label
- RichString by agraham to format a label
- StringUtils by Erel to find the height of a label
All the source code and files are included here.