Is it possible to set all scrollview innerpanel elements with the same backgound image.
Then put some other images (which have transparent backgounds but have some drawings) on this backgrounds...
as it is seen in the code above we are already using background property to set images in every row... Then how can I we overlap two images (one of them transparent mostly)?
Then put some other images (which have transparent backgounds but have some drawings) on this backgrounds...
B4X:
For i = 0 To Bitmaps.Size - 1
Dim iv As ImageView 'create an ImageView for each bitmap
iv.Initialize("")
Dim bd As BitmapDrawable
bd.Initialize(Bitmaps.Get(i))
iv.Background = bd 'set the background of the imageView.
scrl_allNotes.Panel.AddView(iv, 30, 120 + i * 60, 480, 40)
Next
as it is seen in the code above we are already using background property to set images in every row... Then how can I we overlap two images (one of them transparent mostly)?