私はこのようなxmlファイルを作成しました:
<?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/list" >
</ListView>
そして活動:
public class ExampleActivity extends ListActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mainlist);
}
}
ご覧のとおり、私は他に何もしていません。しかし、私はエラーを得ています:
コンテンツには、id属性が「android.R.id.list」であるListViewが必要です
私が持っているにもかかわらず android:id="@+id/list"
、私のxml内の行を。
何が問題ですか?