Ich habe eine XML-Datei wie folgt erstellt:
<?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>
und eine Aktivität:
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);
}
}
Wie Sie sehen, habe ich nichts anderes getan. Aber ich bekomme den Fehler:
Ihr Inhalt muss eine ListView haben, deren ID-Attribut "android.R.id.list" lautet.
Obwohl ich die android:id="@+id/list"
Zeile in meiner XML habe.
Was ist das Problem?