How to Set onClicklistener Method of Image View in Android?
My Problem is I am Adding Image View Array and set images to Image View Dynamically and this is working properly but problem is how to set/define onClicklistener Method of Image View.
Following is My Code:-
ImageView[] mImages;
int[] images={R.drawable.sandle_icon1, R.drawable.sandle_icon2,
R.drawable.sandle_icon3, R.drawable.sandle_icon4};
LinearLayout ll = new LinearLayout(this);
mScrollViewImage.removeAllViews();
ll.setOrientation(LinearLayout.VERTICAL);
mImages = new ImageView[images.length];
mScrollViewImage.addView(ll);
for (floop = 0; floop < sandleicon.length; floop++) {
mImages[floop] = new ImageView(this);
mImages[floop].setImageResource(images[floop]);
ll.addView(mImages[floop]);
}
Sorry for Bad English Communication,
Thanks in Advance.