I am populating a text and list view from a SQLite database. The data is populating from the cursor correctly (I see the list filling with text rows), but I\'m not able to see t
With ListActivity, the id should be
android:id="@android:id/list"
without the '+', shouldn't it?
... in response to Jason's response.
I believe you want your "list layout" LinearLayout to be a ListView with the attribute: android:id="@+android:id/list"
<?xml version="1.0" encoding="utf-8"?>
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+android:id/list"
/>