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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.