J'ai besoin de changer la couleur du texte lors du changement d'état (appui, mise au point) ...
Comment définir la couleur du texte d'un TextView à l'aide de ColorsStateList?
modifier, résolu:
textView.setTextColor (new ColorStateList (
new int [] [] {
new int [] {android.R.attr.state_pressed},
new int [] {android.R.attr.state_focused},
new int [] {}
},
new int [] {
Color.rgb (255, 128, 192),
Color.rgb (100, 200, 192),
Color.White
}
));