I'm using TextWatcher to change the color of the text of the EditText. I have 2 RadioButtons, I wish the color would change when selecting a radio button. For example, if I click on radio1 the text should turn red, however if I click the radio2 the color should be green. How do I call the Listner to radioButton? This is my TextWatcher:
TextWatcher watcher= new TextWatcher() {
public void afterTextChanged(Editable s) {
if (mRadioGroup.getCheckedRadioButtonId() == R.id.radio1) {
mIm.setTextColor(Color.parseColor("#228b22"));
}
else {
mIm.setTextColor(Color.parseColor("#FF0000"));
}
}
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
}
public void onTextChanged(CharSequence s, int start, int before, int count) {
}
};
mIm.addTextChangedListener(watcher);
I'm not sure why you are even using a
TextWatcher
here. What you need is onCheckedChangeListener and change the text color inonCheckedChange()
as you are now.