//获得inflater有3种方式,一种是通过getLayoutInflater();
//一种是通过getSystemService(Context.LAYOUT_INFLATER_SERVICE);
//LayoutInflater.from(context)的静态方法;
LayoutInflater inflater = LayoutInflater.from(context);
convertView = inflater.inflate(R.layout.adapter_item, null);
在定义自定义的Adapter的时候需要用到,如果每个item还有事件的话,最好使用实现BaseAdapter,如果只是单纯的从数据库中查出数据展现,没有事件的话,使用SimpleCursorAdapter比较方便,因为可以直接传入Cursor,并通过属性字段来与布局id匹配。