I'm using the LazyList project of thest1 LazyList and I want the name of the image when I click on it.
list.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
Toast.makeText(getApplicationContext(), id + "", 2000).show();
}
});
I can only get the id of each image. But I need the full name (source) of each image to show it on the browser and download it. How can I do this?