如何更改android

时间:2018-06-13 07:56:07

标签: android button layout colors switch-statement

我有这个Switchbutton

<Switch
    android:id="@+id/switch"
    android:layout_width="300dp"
    android:layout_height="wrap_content"
    android:text="some text"
    android:textColor="@color/foreground" />

当按钮从默认设置选为我的颜色时,如何更改按钮的颜色?

更新

我已经尝试过这个解决方案:Change "on" color of a Switch

但是当我从Switch更改为SwitchCompat时,我看不到更多的Switch Buttons

仅供参考我使用<style name="AppTheme" parent="Theme.Leanback">

1 个答案:

答案 0 :(得分:0)

我通过以编程方式更改开关按钮的颜色来解决问题

int myColor = getResources().getColor(R.color.myColor);
int defaultColor = getResources().getColor(R.color.defaultColor);

public void changeSwitch(View view) {
    boolean checked = ((Switch) view).isChecked();
    if (checked) {
        ((Switch) view).getThumbDrawable().setColorFilter(myColor,
                PorterDuff.Mode.MULTIPLY);
        ((Switch) view).getTrackDrawable().setColorFilter(myColor,
                PorterDuff.Mode.MULTIPLY);
    } else {
        ((Switch) view).getThumbDrawable().setColorFilter(defaultColor,
                PorterDuff.Mode.MULTIPLY);
        ((Switch) view).getTrackDrawable().setColorFilter(defaultColor,
                PorterDuff.Mode.MULTIPLY);
    }
}