I need some round buttons, wich I created :
I can change color by disabeling, but need more minimum one more variation.
tried:
but button became sqare while changing color.
other way could be to change into pressed status, but don't find a way to set it pressed by programm.
Would be happy for hints)
setting the corner radius in programm could be solution. Does anyone know, how?
I can change color by disabeling, but need more minimum one more variation.
tried:
B4X:
For Each v As View In Panel1.GetAllViewsRecursive
If (GetType(V) = "android.widget.Button") Then
Dim b As Button = v
If b.Tag= "c1" Then
b.Color= Colors.Green
End If
End If
Next
but button became sqare while changing color.
other way could be to change into pressed status, but don't find a way to set it pressed by programm.
Would be happy for hints)
setting the corner radius in programm could be solution. Does anyone know, how?
Last edited: