Skip to content Skip to sidebar Skip to footer

Listview Not Working Android - Custom View, Arrayadapter

Does anyone see why my app crashes when I try to load this page with a ListView? Probably an easy fix but I'm new and not sure whats wrong! Trying to repeat scorecard_row in a list

Solution 1:

Issue is with your layout. Your are setting a style to textColor

android:textColor="@style/RText"

You need to set a color , not style

change this to

android:textColor="@color/RText"

Make sure you have color value for RText in color.xml

Post a Comment for "Listview Not Working Android - Custom View, Arrayadapter"