Ben böyle bir xml dosyası oluşturduk:
<?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>
ve bir etkinlik:
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);
}
}
Gördüğünüz gibi, ben başka bir şey yapmadım. Ama hatayı alıyorum:
İçeriğinizin id özelliği 'android.R.id.list' olan bir ListView'a sahip olmalıdır
Düz-se bile android:id="@+id/list"
benim xml satır var .
Sorun nedir?