这是我的代码:
public void setHoverEffect(final Button button,int normalImageId, int hoverImageId) {
if (button != null)
{
StateListDrawable stateListDrawable = new StateListDrawable();
stateListDrawable.addState(new int[]{ }, getResources().getDrawable(normalImageId));
stateListDrawable.addState(new int[]{android.R.attr.state_pressed}, getResources().getDrawable(hoverImageId));
button.setBackgroundDrawable(stateListDrawable);
}
}
当我使用上面的代码时,只有普通图像显示为背景,当我按下按钮时,它不显示悬停图像。
当我使用selector.xml
如下所示的文件并将其设置为背景时,它工作正常。
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/btn_ok_h"> </item>
<item android:drawable="@drawable/btn_ok"> </item>
</selector>
我想动态地执行此操作,以避免为我的应用程序中的每个按钮创建选择器 xml 文件。我无法弄清楚我的代码在哪里出错或我必须在哪里指定额外的属性...... :(