I have a list view declared in my xml:
Try this: android:id="@+id/list" Then clean project and rebuild. In java, just call findViewById like this:
ListView lv = (ListView)findViewById(R.id.list);
Ref: http://developer.android.com/reference/android/view/View.html