Androidアプリの/res/values/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に何か問題がありますか?