程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> textview-Android TextVies:設置背景顏色動態顯示,但是不起作用

textview-Android TextVies:設置背景顏色動態顯示,但是不起作用

編輯:編程綜合問答
Android TextVies:設置背景顏色動態顯示,但是不起作用

給一個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");

我同意顏色和資源應該有相同的樣式,但是我也花費了一些時間才找到這個解決方法。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved