Как я могу установить цвет текста моего TextView
на ?android:textColorPrimary
программно?
Я пробовал код ниже, но он устанавливает цвет текста всегда в белый как для textColorPrimary, так и для textColorPrimaryInverse (оба из них не белые, я проверил XML).
TypedValue typedValue = new TypedValue();
Resources.Theme theme = getActivity().getTheme();
theme.resolveAttribute(android.R.attr.textColorPrimaryInverse, typedValue, true);
int primaryColor = typedValue.data;
mTextView.setTextColor(primaryColor);