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

I'm pretty new to Android and Java, though I've really been excited about what I've learned so far. I'm a little uncertain though on how to implement the Model layer.

I come from a background in PHP web applications with Zend Framework and the like. I'm used to having an ORM component, through which the Model maps to a database. I haven't really seen anything like this yet for Android, although it's possible I've just not looked hard enough.

Are there any good tutorials, articles, 3rd party libraries, etc. that specifically address setting up your Model layer for Android apps?

Thanks!

share|improve this question
You might want to check out this thread - stackoverflow.com/questions/371538/… – Bozhidar Batsov May 4 '10 at 5:23

3 Answers

up vote 2 down vote accepted

Take a look at ActiveAndroid. It's an active record style Android ORM. Here's a sample project: https://www.activeandroid.com/help/sample-project/

share|improve this answer

Just to add my $0.02 for posterity but another option for Android ORM is ORMLite. It uses native Android OS calls to support SQLite on Android and also has JDBC support for other database types.

http://ormlite.com/

share|improve this answer
Thanks Gray. I haven't checked this out yet but it sounds great. – Brian Lacy Oct 18 '10 at 16:09

There is a lightweight SQLite wrapper 'android-active-record' designed with persistent Models in mind. It allows transparent persisting of Java objects similar to what ActiveRecord do in Ruby or CakePHP. Give it a try http://code.google.com/p/android-active-record/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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