第一,TestListView.javapackage com.cellon.bo;import java.util.ArrayList;
import java.util.HashMap;import android.app.Activity;
import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ListView;
import android.widget.SimpleAdapter;public class TestListView extends ListActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        ListView listView = (ListView)findViewById(R.id.list);
        ArrayList<HashMap<String,String>> list = new ArrayList<HashMap<String,String>>();
        HashMap<String,String> map1 = new HashMap<String, String>();
        HashMap<String,String> map2 = new HashMap<String, String>();
        HashMap<String,String> map3 = new HashMap<String, String>();
        map1.put("name", "libo");
        map1.put("age","23");
        map2.put("name", "min");
        map2.put("age", "24");
        map3.put("nage", "liping");
        map3.put("age", "21");
        list.add(map1);
        list.add(map2);
        list.add(map3);
        SimpleAdapter simpleAdapter = new SimpleAdapter(TestListView.this, list, R.layout.user, new String[]{"name","age"}, new int[]{R.id.user_name,R.id.user_age});
        setListAdapter(simpleAdapter);
        
    } @Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
}
}
第二,main.xml
<?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"
    android:orientation="vertical" >
    <ListView 
        android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:drawSelectorOnTop="false"
    ></ListView>
</LinearLayout>第三,user.xml
<?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"
    android:orientation="horizontal" >
<TextView 
    android:id="@+id/user_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />
<TextView 
    android:id="@+id/user_age"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />
</LinearLayout>第四,错误提示
    E/AndroidRuntime(883): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.cellon.bo/com.cellon.bo.TestListView}: java.lang.RuntimeException: Your content must have a ListView whose id attribute is 'android.R.id.list'疑问:
这是怎么回事?运行不了。listviewhashmapandroid

解决方案 »

  1.   

    你把listview的名称换一个试试
      

  2.   

    setListAdapter(simpleAdapter);写错了。
    你要给谁设置适配器,这样写,程序会默认认为你是要给ListActivity设置的。
    应该在这个方法前加上调用它的对象:
    listView.setListAdapter(simpleAdapter);就对了
      

  3.   

    HashMap中的Value不对,应该是HashMap<String, Object>。
    也就是说list应该改成:
    List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
    Map<String, Object> map = new HashMap<String, Object>();
    list.add(map);
      

  4.   

    把listview 的ID改成 id=android:list
    还有你的Map最好放在配置文件中,你写的代码不推荐。
      

  5.   

    正解,满分!tks.这样确实可以运行咯。
    对了,怎么写呢?把map写到配置文件里面。