views:

14

answers:

0

I successfully inserted my image data into a database. However, currently I am having problems with showing it on the Listview.

setListAdapter(new SimpleCursorAdapter(this, R.layout.view_list, c, new String[] {"date", "title", "mood"}, new int[] {R.id.txtDate, R.id.txtTitle, R.id.mood}));           
getListView().setOnItemClickListener(listlistener);

It will still be a string therefore the image cant be shown. How to convert this image into the file I want to successfully display it?