I add 7 panels to the main panel and resize them to fit so that they are displayed side by side. This causes 2 gaps between the panels.
How can i remove this 2 white gabs?
The main panel is white.
B4X:
For i = 0 To 7 -1
Dim xpnl As B4XView = xui.CreatePanel("")
xpnl.Color = xui.Color_Red
Panel1.AddView(xpnl,Panel1.Width/7*i,0,Panel1.Width/7,Panel1.Height)
Next
How can i remove this 2 white gabs?
The main panel is white.