การตั้งค่าสีพื้นหลังโดยทางโปรแกรมของ 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");