9补丁在棒棒糖中显示奇怪的背景

时间:2015-07-10 22:13:34

标签: android android-5.0-lollipop nine-patch android-5.1.1-lollipop

我刚刚更新到api 22,我们的九个补丁按钮开始显示一些奇怪的行为。按钮后面出现了另一个按钮或某种边框,并在选择按钮时进行了一种提升动画。

Unselected button Selected button

我指的是你在按钮右端看到的白色部分。

这是xml。

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:drawable="@drawable/arrow_gray_button"/>
<item android:state_pressed="false" android:state_enabled="true" android:drawable="@drawable/arrow_orange_button"/>
<item android:state_pressed="true" android:state_enabled="true" android:drawable="@drawable/arrow_orange_button_pressed"/>

1 个答案:

答案 0 :(得分:2)

将其添加到布局中的Button,以消除这种影响。

android:stateListAnimator="@null"

希望它有所帮助。