[android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread AJ
Hi David There in Bookmarks [Android Browser] same thing has been done. You can refer that. You can find the code as well. Thanks, AJ On Apr 7, 1:13 pm, David android.and...@gmail.com wrote: Dear All,          I want get both Image and Text from the sqLite database and show them on the

Re: [android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread David
Hi AJ, I just development the project with SDK 2.1, and I found the bookmark in android browser can match my requirement, but is there any source project can run on the emulator? The other question, if user click the item on the listview, the app will create a new Activity to

[android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread AJ
Hi David, Sorry I don't have any such project/source. You can check the following link. It may help you. http://groups.google.com/group/android-developers/browse_thread/thread/0ecad32a314c/8f17cf4ea95964e0?lnk=raot Thanks, AJ On Apr 7, 1:54 pm, David android.and...@gmail.com wrote: Hi AJ,

[android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread theSmith
David, Why would you want to save the image in the sqLite database? I feel like you are using up an unnessary amount of valuable storage space on the device. Wouldn't a better solution be to save the image to the SD card and only save the location of the image to the database?

Re: [android-developers] Re: How to save both Image and Text with SQLiteDatabase? And how to binding this images to a simpleCursorAdapter?

2010-04-07 Thread D.Y
Hi theSmith, Thanks for you advice, that's great. And AJ already provided a solution as the following link: http://groups.google.com/group/android-developers/browse_thread/thread/0eca3 333d32a314c/8f17cf4ea95964e0?lnk=raot Do you have sample project to debug and run? That