Android Question bottom sheets

DonManfred

Expert
Licensed User
Longtime User
You can easily create such a Layout using B4A.
 
Upvote 0

MarkusR

Well-Known Member
Licensed User
Longtime User
it seems you can't parent a panel to a scroll view in designer but it is possible by code.
and the Panel1 parent property is read only^^
B4X:
Activity.RemoveAllViews
Activity.AddView(ScrollView1,0,0,100%x,100%y)
ScrollView1.Panel.Height = 100%y*2
ScrollView1.Panel.AddView(Panel1,0 ,100%y,100%x,100%y*2)
 
Upvote 0
Top