Creating rounded or outlined Layout in DroidScript Native
There is no direct Layout method to set the corner radius or create an outlined layout. To do this, there is a simple hack.
Create a Frame layout
frame = app.AddLayout(lay, "Frame")
frame.SetSize(width, height)
Create a button as the first child of the Frame layout