Hashmaps的ArrayList到ListView nullpointerexception

时间:2011-09-14 13:19:57

标签: android listview arraylist hashmap nullpointerexception

我一直收到这个错误:

无法启动活动ComponentInfo {com.Nostradamus / com.Nostradamus.Contactenlijst}:java.lang.NullPointerException

我不知道自己做错了什么。 它与最后一个代码有关: lv.setAdapter(new SimpleAdapter(this,mylist,R.layout.list_item,from,to));

这是我的java代码:

public class Contactenlijst extends Activity {
ListView lv;
@Override


public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    String[] from = new String[] {"voornaam", "achternaam", "geboortedatum", "adres", "postcode", "woonplaats", "email", "telefoon"};
    int[] to = new int[]{R.id.voornaam, R.id.achternaam, R.id.geboortedatum, R.id.adres, R.id.postcode, R.id.woonplaats, R.id.email, R.id.telefoon};

    ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();
    Log.d("test","test2");
    // Get the data (see above)
    JSONObject json = Database
            .getJSONfromURL("http://fabian.nostradamus.nu/Android/getcontactinfo.php");
    Log.d("test","test3");
    try {
        JSONArray contactinfo = json.getJSONArray("contactlijst");
        Log.d("test","test4");
        // Loop the Array
        for (int i = 0; i < contactinfo.length(); i++) {
            HashMap<String, String> map = new HashMap<String, String>();
            JSONObject e = contactinfo.getJSONObject(i);
            map.put("voornaam", e.getString("staff_name"));
            map.put("achternaam", e.getString("staff_lastname"));
            map.put("geboortedatum", e.getString("staff_dateofbirth"));
            map.put("adres", e.getString("staff_address"));
            map.put("postcode", e.getString("staff_address_postal"));
            map.put("woonplaats", e.getString("staff_address_city"));
            map.put("email", e.getString("staff_email"));
            map.put("telefoon", e.getString("staff_phone"));
            mylist.add(map);

            Log.e("test",map.toString());
        }
    } catch (JSONException e) {
        Log.e("log_tag", "Error parsing data " + e.toString());
    }

    lv = (ListView) findViewById(R.id.list);
    lv.setAdapter(new SimpleAdapter(this, mylist, R.layout.list_item, from, to));

}

}

这些是我的xmls:

Contactenlijst

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"> 
<TextView android:id="@+id/voornaam"
     android:layout_width="50dip"
     android:layout_height="wrap_content"/>

 <TextView android:id="@+id/achternaam"
     android:layout_width="70dip"
     android:layout_height="wrap_content" android:layout_weight="1"/>

 <TextView android:id="@+id/geboortedatum"
     android:layout_width="60dip"
     android:layout_height="wrap_content"  android:layout_weight="1"/>

 <TextView android:id="@+id/adres"
     android:layout_width="50dip"
     android:layout_height="wrap_content"/>

 <TextView android:id="@+id/postcode"
     android:layout_width="70dip"
     android:layout_height="wrap_content" android:layout_weight="1"/>

 <TextView android:id="@+id/woonplaats"
     android:layout_width="60dip"
     android:layout_height="wrap_content"  android:layout_weight="1"/>

 <TextView android:id="@+id/email"
     android:layout_width="60dip"
     android:layout_height="wrap_content"  android:layout_weight="1"/>

 <TextView android:id="@+id/telefoon"
     android:layout_width="60dip"
     android:layout_height="wrap_content"  android:layout_weight="1"/>

Contactview

<?xml version="1.0" encoding="utf-8"?>

<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/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="2"
android:drawSelectorOnTop="false"/>

<TextView android:id="@id/android:empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="No data">
</TextView>

</LinearLayout>

和Listitem

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp" >
</TextView>

2 个答案:

答案 0 :(得分:4)

您没有使用

设置布局
setContentView(R.layout.yourlayout);

因此,如果没有添加布局,您将使用listview,这就是您获得NullPointerException的原因。

之后添加以上行
super.onCreate(savedInstanceState);

或使用listview对象之前

答案 1 :(得分:0)

您需要在setContentView(...)

之前致电lv = (ListView) findViewById(R.id.list);

setContentView(...)为您的布局扩充XML文件。如果您不这样做,那么lv将为空。