Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In given code lbl[0].getTextColor() is giving Error but i don't know how to get text color of textview in java file please help me.

public void angry(View v)
{
    if (lbl[0].getTextColor() == Color.BLACK)
        lbl[0].setTextColor(Color.RED);
    if (lbl[0].getTextColor() == Color.RED)
        lbl[0].setTextColor(Color.BLACK);
}   

Thanks.

share|improve this question

1 Answer

up vote 36 down vote accepted

Use this

textView.getCurrentTextColor()

share|improve this answer
ok Thanks JeffG – Jignesh Ansodariya Jul 19 '11 at 11:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.