Android uygulamamda /res/values/colors.xml altında bir colors.xml dosyası oluşturdum. içindekiler yerine gri,colors.xml resource çalışmıyor
TableRow test = (TableRow)findViewById(R.id.tableRow2);
test.setBackgroundColor(R.color.Green);
Bu yeşil olarak ayarlamak değil ... Ben kullanarak benim bir TableRow arka planını güncellemeyi deneyin
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="Green">#00ff00</color>
</resources>
... vardır. Colors.xml dosyasına hangi değerleri eklediğim önemli değil, her zaman aynı gri renktir. Bununla birlikte, bu durum işe yaramıyor ...
TableRow test = (TableRow)findViewById(R.id.tableRow2);
test.setBackgroundColor(android.graphics.Color.GREEN);
Benim colors.xml ile ilgili bir sorun mu var?
Mükemmel çalışıyor. Teşekkürler! – b10hazard