[Solved] String type not allowed (at textColor with value ‘black’): Android Studios [closed]


try this

 <TextView
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:textColor="@color/colorAccent"/>

or this

<TextView
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:textColor="#ff00"/>

or this

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textColor="@android:color/black"/>

solved String type not allowed (at textColor with value ‘black’): Android Studios [closed]