We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf4ed2 commit 1bdd2dfCopy full SHA for 1bdd2df
ui/core/view.android.ts
@@ -706,6 +706,10 @@ export class ViewStyler implements style.Styler {
706
private static setZIndexProperty(view: View, newValue: any) {
707
if (view.android.setZ) {
708
view.android.setZ(newValue);
709
+
710
+ if(view.android instanceof android.widget.Button){
711
+ view.android.setStateListAnimator(null);
712
+ }
713
}
714
715
0 commit comments