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");