I populate a ListView from the result of a SQLite query. One of the fields is the image file name that I would like to show as an image into a ListView.
How can I do to show the image file? I use:
SimpleCursorAdapter(this, R.layout.list_name,cur,new String[] {"fields_list"}, new int[] { R.id.list...});
Thanks in advance.
Not the complete solution, but I think this should get you started