Re: [android-developers] Re: same app one tablet and phone with differnt gui

2011-09-16 Thread Jonas Gehring
oh, that's a really bad solution! Read the android documentaion: Note: You should generally use multiple APKs to support different device configurations only when your APK is too large (greater than 50MB). Using a single APK to support different configurations is always the best practice, because i

Re: Re: [android-developers] Aw: Object Structure

2011-06-21 Thread Jonas Gehring
yes use the sqlite database as a cache. the content provider contacts the server for data if there are no data stored in the sqlite database. make sure you use asynchron list adapter so that the activity doesn't block... 2011/6/21 Sivaprakash > Thanks !! > > So, when ever I get data back from ba

Re: [android-developers] Aw: SQLiteOpenHelper

2011-06-20 Thread Jonas Gehring
does the insert call, returns 1 or 0 ? it should return 1, otherwise there's an error. the query looks okay for me. try to query without any filter? just DB.query("Notas", null, null, null, null, null, null) ... 2011/6/20 Jorge Luis > It both does work. > > Is there somethign wrong with this qu

Re: [android-developers] Aw: SQLiteOpenHelper

2011-06-20 Thread Jonas Gehring
does the insert call, returns 1 or 0 ? it should return 1, otherwise there's an error. the query looks okay for me. try to query without any filter? just DB.query("Notas", null, null, null, null, null, null) ... 2011/6/20 Jorge Luis > It both does work. > > Is there somethign wrong with this qu