Hi.
I made upgrade B4A from version 4 to 6.80 and I have problem with background of views (EditText and Spin).
Color of background in version 4 was white, now is navy blue.
I can't change it in designer or with code as
EditText1.Color = Colors.White
Initializing with code below change not color of background.
EditText1.Initialize("ET")
.......
Sub ET_Initialize
Dim et As EditText
et = Sender
et.Color = Colors.White
End Sub
Any solution?
Edit: Problem exists still with this code too
Dim cdw As ColorDrawable
cdw.Initialize(Colors.White,1dip)
et.Background = cdw