ListView总是空的

时间:2011-10-18 13:39:36

标签: android android-layout

HY!

我的ListView在我的代码中始终为空。我没有计划原因。在setAdapter方法中出现错误请帮助

代码:

    ListView lv = (ListView)findViewById(R.id.lv_sp);
    ArrayList<SPEntry> list = new ArrayList<SPEntry> ();
    EntryParse ep = new EntryParse(LVEntries.this, getIntent().getExtras().getString("JSON"));
    list = ep.getList();
    //list= new ArrayList<SPEntry>();
    Log.e("SP",String.valueOf(list.size()));
    ca = new CustomAdapter(this, R.layout.customlistitem, list);
    lv.setAdapter(ca);
    ca.notifyDataSetChanged();

布局:

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
    <ListView android:id="@+id/lv_sp" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1" ></ListView>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

我没有看到setContentView的来电。您必须先设置布局,然后检索视图。