Hi all
Background:
I need to place 12 small images onto a panel, but as the location of these is based on a client provided artwork, their position is essentially random.
So far I have achieved the placement of the images by using Designer, and now am looking for the way to fill them with the final icon. I has hoped to be able to
Each image will be initially filled with a transparent gif, then progressively, based on a set of criteria, I want to fill the images with a small icon.
I have achieved this via code in another app which had a constant layout where I was able to set the positions in the code by doing the following
Dim img(15) As ImageView
...
img(n).initialize("img")
...
img(x).Bitmap=LoadBitmap(File.DirAssets ,"placeholder.png")
But cannot find the way to take the Designer generated ImageView1 / ImageView2 etc images I have placed on the Layout and put them into a usable array.
Any help would be appreciated.
As my understanding in some areas is low, I would appreciate to know what goes in Globals / Process Globals / etc -- where appropriate
Background:
I need to place 12 small images onto a panel, but as the location of these is based on a client provided artwork, their position is essentially random.
So far I have achieved the placement of the images by using Designer, and now am looking for the way to fill them with the final icon. I has hoped to be able to
Each image will be initially filled with a transparent gif, then progressively, based on a set of criteria, I want to fill the images with a small icon.
I have achieved this via code in another app which had a constant layout where I was able to set the positions in the code by doing the following
Dim img(15) As ImageView
...
img(n).initialize("img")
...
img(x).Bitmap=LoadBitmap(File.DirAssets ,"placeholder.png")
But cannot find the way to take the Designer generated ImageView1 / ImageView2 etc images I have placed on the Layout and put them into a usable array.
Any help would be appreciated.
As my understanding in some areas is low, I would appreciate to know what goes in Globals / Process Globals / etc -- where appropriate