android以编程方式添加ImageView选择器

Jov*_*van 2 android

我想以编程方式使用选择器状态而不是使用xml文件来更改ImageView背景(在我的情况下为渐变颜色).

我想要按下并默认状态到我的ImageView

为了创建渐变背景,我使用以下代码:

 GradientDrawable gd = new GradientDrawable(
                    GradientDrawable.Orientation.BOTTOM_TOP,
                    new int[] {Color.parseColor(startColour), Color.parseColor(endColour)});
Run Code Online (Sandbox Code Playgroud)

我该如何为此实现选择器?

谢谢

woo*_*shy 6

这是我的应用程序:

public static Drawable getButtonDrawableByScreenCathegory(Context con,
        ScreenCategory screenCategory, ButtonType buttonType) {

    int normalStateResID = (int) GXConstants.NOT_ID;
    int pressedStateResID = R.drawable.button_header_pressed;

    switch (screenCategory) {
    ...
    }

    Drawable state_normal = con.getResources()
            .getDrawable(normalStateResID).mutate();

    Drawable state_pressed = con.getResources()
            .getDrawable(pressedStateResID).mutate();

    StateListDrawable drawable = new StateListDrawable();

    drawable.addState(new int[] { android.R.attr.state_pressed },
            state_pressed);
    drawable.addState(new int[] { android.R.attr.state_enabled },
            state_normal);

    return drawable;
}
Run Code Online (Sandbox Code Playgroud)

要设置背景,比如按钮我打电话:

button.setBackgroundDrawable(GXUtils.getButtonDrawableByScreenCathegory(
            this, mScreenCategory, ButtonType.MENU)
Run Code Online (Sandbox Code Playgroud)