Reputation: 19
I want to make an android
quiz app that I can update on daily basis.Like update daily General knowledge question answers .New section of question set date vice . I am just a beginner in android
and need some guidance . So please guide and give some reference that I can use .
Upvotes: 1
Views: 968
Reputation: 8058
As you are saying you are new to Android
so keep it simple just make the app to fetch the data from server. The other way is to store the data in SQlite
and make your app run offline also.
As you have asked I can update on daily basis So if you want to updates the question then you can do that from your server itself but if you want to update your app then you need to make your app in generalized manner thinking of your future updates, so that you can easily integrate the future functionalities whenever you needed.
Upvotes: 1
Reputation: 7114
You can use Parse.com for such purpose. Here is link for parse.com for documentation link for parse.com usage example take start from this site link last but not least do follow official android docs link
Upvotes: 3
Reputation: 38432
for starters, keep the code and data separate, so you can trigger a fetch from a webserver (in XML or whatever format) with the day's quiz data, then parse and display it from your program. and cache it in a text file so you have something to use in case there is no web connection; nobody likes an app that just hangs.
Upvotes: 0