Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a task remainder app, i need to store all the tasks that i create using the app. Which storage option is better for this app. And how can i show the current task by comparing the task date and time with phone date and time. Is notification message is dialog or alert. Sorry i am new to android.

share|improve this question

closed as not a real question by Selvin, Dour High Arch, Sergey Glotov, Ed Heal, Bali C Dec 7 '12 at 8:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

For storage option I would suggest SharedPreference option in android which is key value

based file storage,follow this

For showing current task using time as parameter simply get the current time of system

using java Calendar class and compare the value with the one stored in the SharedPreference

alon with Task

Notification message is a alert which comes at the top of Android screen example when you

receive a sms then an alert comes at top side of the android screen.

It really depends on the data you want to store.

SQLite

Large amounts of same structured data should be stored in a SQLite database as databases

are designed for this kind of data. As the data is structured and managed by the database,

it can be queried to get a sub set of the data which matches certain criteria using a query

language like SQL. This makes it possible to search in the data. Of course managing and

searching large sets of data influences the performance so reading data from a database can

be slower than reading data from SharedPreferences.

SharedPreferences

SharedPreferences is a key/value store where you can save a data under certain key. To read

the data from the store you have to know the key of the data. This makes reading the data

very easy. But as easy as it is to store a small amount of data as difficult it is to store

and read large structured data as you need to define key for every single data, furthermore

you cannot really search within the data except you have a certain concept for naming the

keys.

So if you have many tasks then you might take a look at Sqlite storage option as databases

are made for voluminous data.

share|improve this answer
Thank u very much, nice explanation. – AndRaGhu Dec 7 '12 at 6:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.