This is my code
TextView text_language_name4 = (TextView)view.findViewById(R.id.text);
if (text_language_name4 != null) {
int text_color4 = selected
? getResources().getColor(R.color.readcolor)
: getResources().getColor(R.color.readcolor);
text_language_name4.setTextColor(text_color4);
text_language_name4.setDuplicateParentStateEnabled(true);
}
When i am using R.attr.mytheme my app forces close
Any suggestions for using attr to change color of a text view
For the theme color try like this:
Now set,