Related questions
How to set the text color of TextView in code?
In XML, we can set a text color by the textColor attribute, like android:textColor="#FF0000". But how do I change it by coding?
I tried something like:
holder.text.setTextColor(R.color.Red);
Where holder is just a class …
How to change fontFamily of TextView in Android
So I'd like to change the android:fontFamily in Android but I don't see any pre-defined fonts in Android. How do I select one of the pre-defined ones? I don't really need to define my own TypeFace but all I …