Using ViewBinder for a custom ListView item with TextView
问题 I'm trying to add a background color for an TextView on my ListView using a SimpleCursorAdapter with ViewBinder , but it doesn't work: listrow.xml: <TextView android:id="@+id/catcolor" android:layout_width="4dp" android:layout_height="match_parent" android:layout_margin="4dp" android:background="#FF0099FF" /> <LinearLayout android:paddingTop="4dp" android:paddingRight="4dp" android:paddingLeft="4dp" android:paddingBottom="2dp"> <TextView android:id="@+id/title" android:text="{title}" android