1

这是我的代码:

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 文件。我无法弄清楚我的代码在哪里出错或我必须在哪里指定额外的属性...... :(

4

1 回答 1

6

@KK你做对了一些错误

看我的代码

public void selector(Button b,int pressed_image,int normal_image )
    {
        StateListDrawable states = new StateListDrawable();
        states.addState(new int[] { android.R.attr.state_pressed }, getResources().getDrawable(pressed_image));
        states.addState(new int[] {}, getResources().getDrawable(normal_image));
        b.setBackgroundDrawable(states);
    }

您可以说此代码与您的代码相同,但存在一些差异。我states.addState(new int[] { android.R.attr.state_pressed }, getResources().getDrawable(pressed_image));之前写过一行states.addState(new int[] {}, getResources().getDrawable(normal_image));

首先尝试这段代码,我已经测试了这段代码4-5次,然后在这里发布。我真的不知道为什么更改行代码可以正常工作。

于 2012-06-21T06:02:45.683 回答