リスト ビューを設定しようとしていますが、エミュレーターで実行すると、「コンテンツには id 属性が必要です android.R.id.list」というエラーが表示されます。
ファイルのxmlは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<!-- Main ListView
Always give id value as list(@android:id/list)
-->
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
生成されたR.idのJavaファイルをチェックインすると、「リスト」がそこにありません。これを修正する方法はありますか?
タンクス