ОБНОВЛЕНИЕ ____
Выход Logcat http://pastie.org/2039452
Мое приложение останавливается в отладчике, а затем падает на этой строке, но это странно, потому что у него нетинформация об ошибке просто зеленая стрелка, как это ...
Любое понимание того, что эта стрелка означает в целом, будет оценено ...
Вот LayoutStudentList
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
>
<TextView
android:id="@+id/studentHeader"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textSize="16sp"
android:text="@string/StudentListHeader"
android:layout_alignParentTop="true"
/>
<EditText
android:id="@+id/studentSearch"
android:layout_width="fill_parent"
android:layout_below="@id/studentHeader"
android:padding="10dp"
android:textSize="12sp"
android:editable="true"
android:hint="@string/StudentFilterPlaceholder"
/>
<ListView
android:id="@+id/studentListView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/studentSearch"
android:padding="10dp"
/>
</RelativeLayout>
Проблема почти наверняка где-то в моем XML, так как, когда я заменяю содержимое макета на один текстовый вид и задаю текст, он работает нормально.