在覆盖getview时如何显示数据

时间:2011-09-25 15:00:35

标签: android listview view simpleadapter

我一直在学习getview。但我不能让它在我的列表视图中显示数据。任何人都可以帮助代码

//public class OrderProductSearch extends Activity {
public class OrderProductSearch extends Activity {
 ArrayList<HashMap<String,String>> list = new ArrayList<HashMap<String,String>>();
    HashMap<String,String> item = new HashMap<String,String>();
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    try{
        setContentView(R.layout.orderproducts);
    }
    catch (Exception e) {
        //
        String shaw="";
        shaw = e.getMessage();
    }

    //Create view of the list where content will be stored
    final ListView listContent = (ListView)findViewById(R.id.orderproductlistview); 

    //Set for fast scrolling 
    listContent.setFastScrollEnabled(true);

    //Create instance of the database
    final DbAdapter db = new DbAdapter(this); 

    //Open the Database and read from it
    db.openToRead();

    //Routine to call all product sub groups from the database
    final Cursor cursor = db.getAllSubGroupProduct();
   //Manages the cursor
    startManagingCursor(cursor);
    int i=0;
    cursor.moveToFirst();
    while (cursor.getPosition() < cursor.getCount()) {
         item.put("ProdName",cursor.getString(2));
         item.put("ProdSize", cursor.getString(3));
         item.put("ProdPack",cursor.getString(4));
         item.put("OrdQty","0");

         //list.add(item);
         list.add(i, item);
         item = new HashMap<String,String>();   
         cursor.moveToNext();
        i = i + 1;

    }

    String[] from = new String[] {"ProdName", "ProdSize", "ProdPack", "OrdQty"};

    int[] to = new int[] { R.id.productlinerow, R.id.productlinerow2, R.id.productlinerow3, R.id.productlinerow4};
    //SimpleAdapter notes = new SimpleAdapter(OrderProductSearch.this,list,R.layout.productlinerow,from,to);        
    NewAdapter notes = new NewAdapter(OrderProductSearch.this,list,R.layout.productlinerow,from,to);


    listContent.setAdapter(notes);


    //Close the database
    db.close();     


        }

class NewAdapter extends SimpleAdapter{
    int resource;
    Context cxt;
    private Context context;
    List<? extends Map<String, ?>> DataList;

    public NewAdapter(Context context, List<? extends Map<String, ?>> data,
            int _resource, String[] from, int[] to) {
        super(context, data, _resource, from, to);
        resource = _resource;
        this.context = context;
        DataList = data;
        // TODO Auto-generated constructor stub
    }

    public View getView(int position, View convertView, ViewGroup parent) 
    {            
        View v = convertView;

           if (v == null) {
                LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                v = inflater.inflate(R.layout.productlinerow, null);
           }

    //       TextView bTitle = (TextView) v.findViewById(R.id.productlinerow);
  //         bTitle.setText(DataList[position,1][1].toString());

        return v;
            }   

}






 }

1 个答案:

答案 0 :(得分:2)

如果您正在使用SimpleAdapter,则不需要扩展类并自定义getView(),因为SimpleAdapter通过资源,from和to参数处理数据到布局的映射。看一下本教程的想法:

http://vbsteven.com/archives/24

如果您想进行更多涉及的自定义,请使用SimpleAdapter实际扩展的BaseAdapter。这是一个教程,其中包含以下示例:

http://android.amberfog.com/?p=296