diff --git a/ui/core/view.android.ts b/ui/core/view.android.ts index d46bbb069..a2cafceb9 100644 --- a/ui/core/view.android.ts +++ b/ui/core/view.android.ts @@ -706,6 +706,10 @@ export class ViewStyler implements style.Styler { private static setZIndexProperty(view: View, newValue: any) { if (view.android.setZ) { view.android.setZ(newValue); + + if(view.android instanceof android.widget.Button){ + view.android.setStateListAnimator(null); + } } }