Настройка фонового цвета программно из андроида 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>
[EDIT]: Кроме того, установка цвета текста приводит к исчезновению TextView.
TextView c1 = new TextView(activity);
c1.setTextColor(R.color.solid_red);
c1.setText("My Text");