我正在尝试在视图数组中添加列表视图。lv1.setAdapter 抛出空指针异常。我不知道为什么会这样。
这是我的代码:
private ListView lv1;
private String lv_arr[]= new String[]{"Android","iPhone","BlackBerry","AndroidPeople"};
View[] vs = new View[1];
lv1=(ListView)findViewById(R.id.ListView01);
lv1.setAdapter(new ArrayAdapter<String> (MyCalendar.this,android.R.layout.simple_list_item_1,lv_arr));
vs[0] = lv1;
view.setListViewItems(vs);
这是 list.xml 中的 ListViewO1
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView
android:id="@+id/ListView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>