本帖最后由 zhangqiong123 于 2012-03-28 16:40:04 编辑

解决方案 »

  1.   

     SimpleCursorAdapter adapter=new SimpleCursorAdapter(this,R.layout.userinfo,cursor,new String[] {"name","ename"},new int[]{R.id.name,R.id.age});  
    这里的new int中代表的是什么啊
      

  2.   

    public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) 
      

  3.   

    请问怎么将SimpleCursorAdapter取的两个adapter合并到一个listview中呀?