First change your .xml color below
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="listViewSelected">@android:color/holo_blue_light</drawable>
<color name="listViewPressed">@android:color/holo_green_light</drawable>
<color name="pagerTabStrip">#2B3333</drawable>
<color name="tableHead">#FF444444</drawable>
</resources>
To set the background color of a text field, you can do, for example,
tv.setBackgroundColor(R.color.tableHead);
Additionally, to set the text color for textview, you can do, for example,
tv_empty.setTextColor(R.color.tableHead)
source
share