Tôi đã tạo một tệp xml như thế này:
<?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>
và một hoạt động:
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);
}
}
Như bạn thấy, tôi chưa làm gì khác. Nhưng tôi đang nhận được lỗi:
Nội dung của bạn phải có ListView có thuộc tính id là 'android.R.id.list'
Mặc dù tôi có android:id="@+id/list"
dòng trong xml của tôi.
Vấn đề là gì?