Question: I have a class with 300-400 imageviews. The class implements the View.onClickListener. Can i put the imageviews in some sort of array or ? The imageviews are set up something like this
ImageView IM1 = new ImageView(this);
IM1.setImageResource(R.drawable.have_fun);
and i cant understand how to use these in the onclick for the class. I have normally used getId but these dont have id since they arent in xml.