How to Set onClicklistener Method of ImageView in Android?

后端 未结 3 597
盖世英雄少女心
盖世英雄少女心 2020-12-30 06:58

I am Adding an array of ImageViews and set an image to each ImageView dynamically and I\'m done with it. But the problem is how to set/define onCl

3条回答
  •  孤独总比滥情好
    2020-12-30 07:15

    This worked for me in fragment

        // update the Youtube thumbnail images
            this.youtube_thumbnail = (ImageView) listView.findViewById(R.id.youtube_thumbnail);
    
            this.youtube_thumbnail.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) {
    
                    System.out.println("Adding youtube thumbnail");
    
                }
            });
    

提交回复
热议问题