My question is: Is it possible to display graphics on AbsoluteLayout using ImageView without having to define the said ImageView in an XML file? The reason I'm asking this is because I'm making an application where the number of images on screen changes from time to time.
I want to create and define an ImageView object without calling this line: myImageView = (ImageView)v.findViewById(R.id.nothere);
Any information on whether I can generate an ImageView object in code (without any XML files) will be welcome.