To provide any background color
android:background="#rrggbb"
To provide text color
android:textcolor="#rrggbb"
You can use this page to find out the correct RGB value in hexadecimal format.
Colorpicker
To specify comments in xml
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:text="Test text" android:textColor="#332116" android:textSize="16sp" android:textStyle="bold" />
Renjith
source share