I have more labels in one panel and I need to give them same Background, TextColor, TextSize etc. Is there any easier way to do that than write it over and over again?
then you can put them explicit into an array or list like this:
B4X:
Dim labels() As Label
labels= Array As Label (label1, label2, label3, label4)
For i = 0 To labels.size-1
labels(i).TextColor = Colors.Black
labels(i).Gravity = Gravity.CENTER_VERTICAL
Next