Tagged Questions
0
votes
0answers
64 views
Android database access
For my simple Android application I don't want to use an ORM, anyway I'd like to have a db-communcation layer easy to user, to read and efficient.
This is my solution: every entity (ex: Person) as an ...
0
votes
1answer
51 views
Structuring data in an Android application [closed]
I originally posted this question on StackOverflow but was told to move it here.
I have an application that I have been developing for the last two years, and over the course of time it has become ...
5
votes
1answer
285 views
Android database interaction logic
I have a database-intensive app. Almost every activity requires access to the database, both reading and writing. I had a lot of problems with separate threads and activities on the stack closing ...
5
votes
1answer
667 views
Android ListAdapter design advice
I want to write an Android ListAdapter to serve data from a database that look like this:
CREATE TABLE note (_id integer primary key autoincrement,
content text not null)
CREATE ...