OK, so I\'m playing around with an android app.
The 90% use case is that users want to go straight to the primary list screen to find what they\'re looking for. Tha
How will you be storing the configuration?
If it is in SQLlite you could just create a table called firstuse and put a field in there called hasbeenused and make it null. Then when the app is used you can put a 1 in there. Then you can read it each time your app loads and if that field = 1 then go to your next activity.