給一個android的TextView設置背景顏色動態顯示,到那時好像不起作用。我是少了什麼東西麼?
TextView et = new TextView(activity);
et.setText("350");
et.setBackgroundColor(R.color.white);
I also have this file (colors.xml) in my res/values folder
在我的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");
試試這個:
TextView c1= new TextView(activity);
c1.setTextColor(getResources().getColor(R.color.solid_red));
c1.setText("My Text");
我同意顏色和資源應該有相同的樣式,但是我也花費了一些時間才找到這個解決方法。