Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
hello Dipak.... u have to create integer array for ImageView... Mitesh Jain SKP – AndroidTechMe Sep 6 '11 at 10:20
I have Already create Integer Array. – Dipak Keshariya Sep 6 '11 at 10:26

2 Answers

up vote 3 down vote accepted
    for (floop = 0; floop < sandleicon.length; floop++) {
        mImages[floop] = new ImageView(this);
        mImages[floop].setImageResource(images[floop]);
        mImages[floop].setId(floop);
            ll.addView(mImages[floop]);
    mImages[floop].setOnClickListener(new View.OnClickListener() {
                            public void onClick(View v) {

                                //v.getId() will give you the image id

                            }
                        });



}
share|improve this answer
Hello Rasel, I used that but Problem is how to get index of imageview on click of particular image. – Dipak Keshariya Sep 6 '11 at 9:54
See Updated answer – Rasel Sep 6 '11 at 10:00
V.getId is Give Me Only -1 Value. – Dipak Keshariya Sep 6 '11 at 10:05
did you setId()? – Rasel Sep 6 '11 at 10:07
Thank u Rasel now this is working. Also +1 for help me. – Dipak Keshariya Sep 6 '11 at 10:11
show 1 more comment
mImages[floop].setOnClickListener(clickListener);

private OnClickListener clickListener = new OnClickListener() {

        public void onClick(View v) {

        }
};

This is how you set onclicklistener to any view.

share|improve this answer
u can use mImages[floop].setTag(floop), setTag and getTag are used to store some data related to a view. – Yashwanth Kumar Sep 6 '11 at 10:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.