如何在Android中更改切换小部件的文本颜色?我检查布尔值并设置文本值和颜色,但代码不起作用

时间:2016-10-09 11:16:19

标签: android

public void onCheckedChanged(CompoundButton compoundButton, boolean checked) {
    rotation = checked;
    if(checked){
        switchRotation.setText("h");
        switchRotation.setTextColor(Color.WHITE);
    }
    else{
        switchRotation.setText("j");
        switchRotation.setTextColor(Color.BLACK);
    }

// updateSwitchStatus();     } 这段代码不起作用我怎样才能设置文字颜色?

0 个答案:

没有答案