At this moment I have activity (lview) with list view which use images downloaded to temporary files from url and simple activity
(sact) with imageview
.
on click the value of textview
in lview
is picked and send by intent to sact, where it is associated with an object. After object was picked up it is parsed and link from it is extracted. Then this link is used to download image.
Intent in = new Intent(getApplicationContext(),
SingleMenuItemActivity.class);
in.putExtra("name", name);
Log.d("Starting activity ", "Yeah ");
startActivity(in);
In fact both activities use same link and refers to same image in the web. Obviously it is inefficient.
How can i take picture(or unique id) from image view in lview and then send it to sact?