I want to define a default text color for my android app.
I have a base activity class, that all activities are extended from it and I thought this might be a good place
Set your default color in your res/values/colors.xml like this
res/values/colors.xml
#ffffff
So this color to all your texts
android:textColor="@color/defaultTextColor"
or
textView.setTextColor(R.color.defaultTextColor);