एंड्रॉइड के पृष्ठभूमि रंग को प्रोग्रामेटिक रूप से सेट करना TextView
काम नहीं करता है। मुझे कुछ याद आ रहा है!
TextView et = new TextView(activity);
et.setText("350");
et.setBackgroundColor(R.color.white);
मेरे रेज / वैल्यू फोल्डर में यह फाइल (color.xml) भी है
<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");