Установка цвета фона программно для Android TextView
не работает. Я что-то упустил!
TextView et = new TextView(activity);
et.setText("350");
et.setBackgroundColor(R.color.white);
У меня также есть этот файл (colors.xml) в моей папке res / values
<resources>
<color name="white">#ffffffff</color>
<color name="black">#ff000000</color>
</resources>
[РЕДАКТИРОВАТЬ]: Кроме того, установка цвета текста приводит к исчезновению TextView.
TextView c1 = new TextView(activity);
c1.setTextColor(R.color.solid_red);
c1.setText("My Text");