Note that you can call setPadding with JavaObject:
B4X:
Sub SetPadding(v As View, Left As Int, Top As Int, Right As Int, Bottom As Int)
Dim jo As JavaObject = v
jo.RunMethod("setPadding", Array As Object(Left, Top, Right, Bottom)
End Sub
I know but it would be handy if we could do it in the designer and that during compile
the above code gets added if the padding is not filled in with the defailt value (not 0;0;0;0 apparently)