No, I did not fix it.
The problem is that the version of android lollipop has introduced this thing, and to remove it we need to call button.setStateListAnimator (null) but this is not possible in B4a.
No, I did not fix it.
The problem is that the version of android lollipop has introduced this thing, and to remove it we need to call button.setStateListAnimator (null) but this is not possible in B4a.
Sub RemoveShadow(Button1 As Button)
Dim sdk As Phone
If sdk.SdkVersion < 21 Then Return
Dim jo As JavaObject
jo = Button1
jo.RunMethod("setStateListAnimator", Array(Null))
End Sub