您的布局文件夹中有布局 notes_list.xml 吗?您的 strings.xml 中是否有一个名为 menu_insert 的字符串?这可能是问题所在,因为我认为他们没有在教程中提供所有内容......他们确实在解决方案中提供了它们:
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content">
<ListView android:id="@+id/android:list" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
<TextView android:id="@+id/android:empty" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/no_notes"/>
</LinearLayout>
在 values 文件夹中的 strings.xml 中:
<string name="menu_insert">Add Note</string>