string.xml ファイルでは、次のタグを使用します
<string name="CodeColor" >"#0000ff"</string>
私が使用する場合
textview1.setTextColor(Color.RED);
動作しますが、使用すると
textview1.setTextColor(TextViewStyles.this.getResources().getColor(R.string.CodeColor));
or
textview1.setTextColor(R.string.CodeColor);
うまくいきません。助言がありますか...
前もって感謝します