I want to change the color of TextView
in ListView
to the themes default, but right now it has different "non-selected" color ( gray in my case instead of white ). I have tried following code, to pick theme default color, but it gives me an error Binary XML file...
<TextView
android:id="@+id/botText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="17sp"
android:paddingTop="2dp"
android:paddingBottom="5dp"
android:textColor="?android:attr/textColor"
/>