我在Android應用程序/res/values/colors.xml下創建了一個colors.xml文件。內容是...colors.xml資源不起作用
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="Green">#00ff00</color>
</resources>
我嘗試更新我的一個的TableRow的使用背景...
TableRow test = (TableRow)findViewById(R.id.tableRow2);
test.setBackgroundColor(R.color.Green);
這不把它設置爲綠色,它是灰色的,而不是。無論我將什麼值添加到colors.xml文件,它始終是相同的灰色。然而,這確實有效...
TableRow test = (TableRow)findViewById(R.id.tableRow2);
test.setBackgroundColor(android.graphics.Color.GREEN);
我的colors.xml有問題嗎?
完美運作。謝謝! – b10hazard