I have a SQLite
database that contains a table image
:
this table contains
- The
image
id The
url
of animage
private static final String CREATE_BD_IMAGE="CREATE TABLE " + TABLE_IMAGE + " (" + COL_ID_IMAGE + " INTEGER PRIMARY KEY AUTOINCREMENT, " + COL_ADRESS_IMAGE + " TEXT NOT NULL ); " ;
I want to know how can I display this image
on the button
.