package com.joyplus.Adapters;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.app.Activity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import com.androidquery.AQuery;
import com.joyplus.R;
/*
* 分类导航详情的数据适配器
* */
public class Tab2Page4ListAdapter extends ArrayAdapter {
// listview的数据
private Map viewMap;
AQuery aq;
// 构造函数
public Tab2Page4ListAdapter(Activity activity, List list) {
super(activity, 0, list);
viewMap = new HashMap();
}
// 获取显示当前的view
@Override
public View getView(int i, View view, ViewGroup viewgroup) {
Integer integer = Integer.valueOf(i);
View view1 = (View) viewMap.get(integer);
if (view1 == null) {
// 加载布局文件
view1 = ((Activity) getContext()).getLayoutInflater().inflate(
R.layout.tab2_page4_detail_list, null);
aq = new AQuery(view1);
// 获取当前数据项的数据
Tab2Page4ListData m_Tab2Page4ListData = (Tab2Page4ListData) getItem(i);
aq.id(R.id.txt_video_caption).text(m_Tab2Page4ListData.Pic_name);
aq.id(R.id.txt_1).text(m_Tab2Page4ListData.Pic_list1);
aq.id(R.id.TextView01).text(m_Tab2Page4ListData.Pic_list2);
aq.id(R.id.TextView02).text(m_Tab2Page4ListData.Pic_list3);
aq.id(R.id.video_preview_img).image(m_Tab2Page4ListData.Pic_url,
true, true);
Integer integer1 = Integer.valueOf(i);
Object obj = viewMap.put(integer1, view1);
}
return view1;
}
}