Quando provo a fare setContentView(R.layout.main) all'interno di una ListActivity ottengo un RuntimeException error con il seguente messaggio:
Your content must have a ListView whose id attribute is 'android.R.id.list'
Questo il contenuto del mio file main.xml:
Dove sto sbagliando? Grazie in anticipo
Your content must have a ListView whose id attribute is 'android.R.id.list'
Questo il contenuto del mio file main.xml:
Codice:
<ListView id="android.R.id.list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
Dove sto sbagliando? Grazie in anticipo