0

我正在尝试在视图数组中添加列表视图。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>
4

1 回答 1

0

您是否将内容视图设置为 list.xml?

setContentView(R.layout.list);

将正确答案视为正确答案,更多人可能会帮助您!(它是帖子左侧(评级编号下方)的灰色勾号,单击它,它将变为绿色以接受答案)。

于 2011-03-15T13:23:23.807 回答