What is the best way to store local in android? -
i have build quiz app 1500 questions .i need 1 random question . don't have load questions once .. best way store questions sql,json,xml ?
probably amount of questions, i'd go using sql database. depends, however, kind of choose, if local or centralized one.
if plan change questions time time, can have relatively strong server users might connect webservice , questions, i'd recommend centralized storage database.
if plan not change them, they'll static, or same users, or can't afford having remote server, use sqlite
database local every device, , each time start app, load questions (or queries when need them).
Comments
Post a Comment