Is possible to make animations on B4XDialog ? like appears from the bottom to top?
Imagine you have this layout inside a B4XDialog:
the idea is make this round panel coming from the bottom to this position
Imagine you have this layout inside a B4XDialog:
the idea is make this round panel coming from the bottom to this position
B4X:
Dim p As B4XView = xui.CreatePanel("")
p.SetLayoutAnimated(0, 0, 0, 300dip, 500dip)
p.LoadLayout("layPopLogin")
Dim pDialogBox As B4XDialog
pDialogBox.Initialize(pBase)
pDialogBox.BorderColor = Colors.Transparent
Dim rs As ResumableSub = pDialogBox.ShowCustom(p,"","","")