For some reason my custom listview doesn't look like most. At this point it is a single TextView (I play on added more later), but there are 2 problems.
1) The selected item only selects the inner TextView, not the entire View row (why?).
2) When scrolling the page, the View TextViews go all black. This only happens during the scroll event.
Here are the relevant views. In the main activity:
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#ffffff"
android:id="@+id/chapterList"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
And the chapter list (individual items).
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widget44"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="5px"
android:paddingBottom="5px"
android:gravity="center_horizontal">
<TextView
android:id="@+id/chapter_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textColorHighlight="#656565"></TextView>
</LinearLayout>