I have a Tabel with Buttons, 9 rows and 5 columns -> 45 Buttons. Each Button sould have the properties:
row, week, time, day, name, description, colour, room.
What is the best way for the storage? Do I have to use the complicated SQLite, or is there a easier solution? I’m new in Android, therefore SQLite is not easy for me.
I have a Tabel with Buttons, 9 rows and 5 columns -> 45 Buttons.
Share
Personally I would take some time to implement a ContentProvider and use a SQLite db…
However, you can use a lot of different approaches, you can save all your information in a private file (so you can format them as you wish) or use the SharedPreferences mechanism.
You should have a look here to read about the different methods