Thiết lập màu nền lập trình của Android TextView
dường như không hoạt động. Tôi đang thiếu thứ gì đó!
TextView et = new TextView(activity);
et.setText("350");
et.setBackgroundColor(R.color.white);
Tôi cũng có tệp này (colors.xml) trong thư mục res / value của mình
<resources>
<color name="white">#ffffffff</color>
<color name="black">#ff000000</color>
</resources>
[EDIT]: Ngoài ra, việc đặt màu văn bản sẽ khiến TextView biến mất.
TextView c1 = new TextView(activity);
c1.setTextColor(R.color.solid_red);
c1.setText("My Text");