Am completely new to android development(from J2EE,Spring and Oracle background). Just trying to create a logo quiz app in android. Am planning my simple sqlite db structure to be,
- unique image name
- answer for the logo image(to check with user input)
- whether answered or not (just a flag)
- if answered, then points.
As soon as the user installs the app, the table has to be created with all the values. Now, my doubt would be, how to store this data? If i code this storing logic in an activity, then every time when the activity is started, would we be creating a new db and store it? where the coding logic for this initial storage would go?
Any help is much appreciated for this dummies question... Thanks in advance...