アップデート____
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のどこかにあります。