我已经创建了一个这样的XML文件:
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/list" >
和活动:
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);
}
}
正如你所看到的,我没有做任何其他事情。但我得到的错误:
Your content must have a ListView whose id attribute is ‘android.R.id.list’
即使我在我的xml中有android:id =“@ id / list”行。
问题是什么?