Mengatur warna latar belakang secara terprogram dari sebuah android TextView
sepertinya tidak berfungsi. Saya saya melewatkan sesuatu!
TextView et = new TextView(activity);
et.setText("350");
et.setBackgroundColor(R.color.white);
Saya juga punya file ini (colors.xml) di folder res / values saya
<resources>
<color name="white">#ffffffff</color>
<color name="black">#ff000000</color>
</resources>
[EDIT]: Selain itu, pengaturan warna teks menyebabkan TextView menghilang.
TextView c1 = new TextView(activity);
c1.setTextColor(R.color.solid_red);
c1.setText("My Text");