如何以编程方式更改开关颜色?

时间:2018-05-03 07:06:26

标签: android android-layout android-togglebutton

我在colors.xml中有五种不同的颜色。

<color name="colorSU">#4130f0</color>
<color name="colorBM">#ff752d</color>
<color name="colorTM">#2a8cbd</color>
<color name="colorBE">#7400d5</color>
<color name="colorSE">#22B573</color>

现在我需要在切换“按钮”时应用它。 (圆形切换)

toggleButton = (Switch)view.findViewById(R.id.switch_filter);
toggleBtnUserRoleDrawable();

但是下面的实现并没有改变圆形开关按钮的颜色。它始终采用默认主题颜色。

 private void toggleBtnUserRoleDrawable() {
        String userRole = AppUtils.getUserRole(mSharedPreferences);
        switch (userRole) {
            case USER_TYPE_SE:
               // toggleButton.setBackground(getResources().getDrawable(R.drawable.toggle_button_se));
                //toggleButton.setTrackDrawable(getResources().getDrawable(R.color.colorSE));
                break;
            case USER_TYPE_TM:
                toggleButton.setBackground(getResources().getDrawable(R.drawable.colorTM));
                toggleButton.setTrackDrawable(getResources().getDrawable(R.color.colorTM));
                break;
            case USER_TYPE_BM:
                toggleButton.setBackground(getResources().getDrawable(R.drawable.colorBM));
                toggleButton.setTrackDrawable(getResources().getDrawable(R.color.colorBM));
                break;
            case USER_TYPE_BE:
                toggleButton.setBackground(getResources().getDrawable(R.drawable.colorBM));
                toggleButton.setTrackDrawable(getResources().getDrawable(R.color.colorBE));
                break;
            case USER_TYPE_SU:
                toggleButton.setBackground(getResources().getDrawable(R.drawable.colorSU));
                toggleButton.setTrackDrawable(getResources().getDrawable(R.color.colorSU));
                break;
        }
    }

1 个答案:

答案 0 :(得分:0)

您只需在可绘制对象上应用ColorFilter,如下所示:

case USER_TYPE_SU:
 int color = ContextCompat.getColor(this,R.color.colorSU)            
 toggleButton.getTrackDrawable().setColorFilter(color, PorterDuff.Mode.SRC_ATOP);

  break;

您可以对getThumbDrawable()getBackground()

执行相同的操作