Android:如何以编程方式更改Drawable选择器的颜色取决于条件?

时间:2022-11-21 12:11:00

I have a button

我有一个按钮

<Button
 android:id="@+id/loginButton"
 android:layout_width="35dp"
 android:layout_height="35dp"
 android:background="@drawable/button_shape"
 android:text="@string/login"
 android:textColor="#ffffff"
 android:textSize="12sp" />

following is button_shape.xml

以下是button_shape.xml

<?xml version="1.0" encoding="utf-8"?>
 <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/button_gradient_login" />
<item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/button_gradient_login" />
<item>
    <shape xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">
        <size android:height="16dp" />
        <solid android:color="@color/valid_btn_clr"></solid>
        <corners android:radius="10dp"></corners>
    </shape>
</item>

Following is button_gradient_login.xml

以下是button_gradient_login.xml

<?xml version="1.0" encoding="utf-8"?>
   <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
   <shape xmlns:android="http://schemas.android.com/apk/res/android">
        <gradient android:angle="360" android:startColor="@color/red"     android:endColor="@color/green"/>
        <corners android:radius="4dp"></corners>
    </shape>
</item></layer-list>

Now I want to change the background color of button_shape.xml and on press start and end color of button_gradient_login.xml at run time depens on my conditions

现在我想改变button_shape.xml的背景颜色,并在运行时按下button_gradient_login.xml的开始和结束颜色取决于我的条件

1 个解决方案

#1


2  

You can make drawable selector programatically Here is code for state_activated. Please refer below code.

您可以以编程方式创建可绘制选择器这是state_activated的代码。请参考以下代码。

        GradientDrawable gradientDrawable = new GradientDrawable();
        gradientDrawable.setStroke((int) context.getResources().getDimension(R.dimen.dp1), Color.BLACK);
        gradientDrawable.setCornerRadius(context.getResources().getDimension(R.dimen.dp5));
        gradientDrawable.setColor(((MainActivity) context).getBgColor());

        GradientDrawable gradientDrawableDefault = new GradientDrawable();
        gradientDrawableDefault.setStroke((int) context.getResources().getDimension(R.dimen.dp1), Color.BLACK);
        gradientDrawableDefault.setCornerRadius(context.getResources().getDimension(R.dimen.dp5));
        gradientDrawableDefault.setColor(Color.WHITE);

        StateListDrawable stateListDrawable = new StateListDrawable();
        stateListDrawable.addState(new int[]{android.R.attr.state_activated}, gradientDrawableDefault); // if activated true
        stateListDrawable.addState(StateSet.WILD_CARD, gradientDrawable); // rest all the state

#1


2  

You can make drawable selector programatically Here is code for state_activated. Please refer below code.

您可以以编程方式创建可绘制选择器这是state_activated的代码。请参考以下代码。

        GradientDrawable gradientDrawable = new GradientDrawable();
        gradientDrawable.setStroke((int) context.getResources().getDimension(R.dimen.dp1), Color.BLACK);
        gradientDrawable.setCornerRadius(context.getResources().getDimension(R.dimen.dp5));
        gradientDrawable.setColor(((MainActivity) context).getBgColor());

        GradientDrawable gradientDrawableDefault = new GradientDrawable();
        gradientDrawableDefault.setStroke((int) context.getResources().getDimension(R.dimen.dp1), Color.BLACK);
        gradientDrawableDefault.setCornerRadius(context.getResources().getDimension(R.dimen.dp5));
        gradientDrawableDefault.setColor(Color.WHITE);

        StateListDrawable stateListDrawable = new StateListDrawable();
        stateListDrawable.addState(new int[]{android.R.attr.state_activated}, gradientDrawableDefault); // if activated true
        stateListDrawable.addState(StateSet.WILD_CARD, gradientDrawable); // rest all the state