I'm trying to change the back ground image on both a ProgressBar and SeekBar view.
I've used the following code and the imageview1 does show the correct image, the others are not changed from their standard grey background.
What am I doing wrong ?
Thanks,
Gary M
I've used the following code and the imageview1 does show the correct image, the others are not changed from their standard grey background.
What am I doing wrong ?
B4X:
Activity.LoadLayout("1")
Dim bmp As Bitmap
bmp.Initialize(File.DirAssets, "abc.png")
SeekBar2.SetBackgroundImage(bmp)
seekbar4.SetBackgroundImage(bmp)
imageview1.SetBackgroundImage(bmp)
pbBar1.SetBackgroundImage(bmp)
Thanks,
Gary M