• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to make a set up screen

 
Ranch Hand
Posts: 252
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,

We all are familiar with Insatallation wizard. I want to make installation wizard for my android app which runs only once when app is installed in device.How to make that?

I know if I want to make installation wizard the screens are nothing but Activity only.But the specialty is that they just get executed once.
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why do you want to do that? What is missing from the installation mechanism built into Android that makes you want to do something else? Also, why do you want to tick off your users by presenting them with an installation mechanism that they are not used to, and that is completely different from the normal Android app installation?
 
Hardik Trivedi
Ranch Hand
Posts: 252
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No no, you get me wrong.
I want to make such screens because there are few screen layouts which gives intial information to the users like how to use the app etc.
That's it. I dont want to tick off the user or dont want to play with phone's mechanism.
 
Peter Johnson
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Why not used Shared Preferences to keep a property that indicates whether the app has been previously run, and if not present an alternate Activity that contains usage information. Or perhaps simply have the main Activity display a toast that tells the user to go to Menu | Help for instructions on using the app? If you think about it you can possibly come up with several other variations.
 
reply
    Bookmark Topic Watch Topic
  • New Topic