Bir android'in arka plan rengini programlı olarak ayarlamak TextView
işe yaramıyor gibi görünüyor. Bir şey özlüyorum!
TextView et = new TextView(activity);
et.setText("350");
et.setBackgroundColor(R.color.white);
Ayrıca res / değerleri klasöründe bu dosya (colors.xml) var
<resources>
<color name="white">#ffffffff</color>
<color name="black">#ff000000</color>
</resources>
[EDIT]: Ayrıca, metin rengini ayarlamak TextView'in kaybolmasına neden olur.
TextView c1 = new TextView(activity);
c1.setTextColor(R.color.solid_red);
c1.setText("My Text");