Android Question Transparent Activity background

dibesw

Active Member
Licensed User
Longtime User
HI,
is it possibile to load an activity backgruoud
and after load somehow another activity background in trasparency?
B4X:
Dim BG As Bitmap = LoadBitmapSample(File.DirAssets, "aaa.jpg", Activity.Width, Activity.Height)
Activity.SetBackgroundImage(BG)
'After Image in transparency from first...
Dim BG As Bitmap = LoadBitmapSample(File.DirAssets, "bbb.jpg", Activity.Width, Activity.Height)
Activity.SetBackgroundImage(BG)
 
Top