Is there such a method call \"getBackgroundColor\" in TextView?
if I got 2 textViews: tv1 and tv2 in one LinearLayout. What I did:tv1.setBackgroundColor(Color.BLUE)
There is no such method, because in common there is now "background color" - there can be any Drawable object(for example picture). So, you should remember what color do you set for text.
If you can't save it - use View.setTag() and View.getTag() methods to store any value, associated with view.