Hello all,
In my application....there are some images like temp1.jpg, temp2.jpg .....upto temp35.jpg,
so on button clicking, i want to load one-by-one image in ImageView .... i want to do like:
cnt=1;
imagename="temp" + cnt + ".jpg";
cnt++;
so my confusion is that "is there anyway to load an image in imageview from string(imagename variable) like temp1.jpg,etc."