안드로이드에서 프로그래밍 방식으로 배경색을 TextView
설정해도 작동하지 않는 것 같습니다. 나는 무언가를 놓치고있다!
TextView et = new TextView(activity);
et.setText("350");
et.setBackgroundColor(R.color.white);
내 res / values 폴더 에이 파일 (colors.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");