Android中 自訂資料繫結適配器BaseAdapter的方法

來源:互聯網
上載者:User

複製代碼 代碼如下:public class PersonAdapter extends BaseAdapter {
private List persons;// 要繫結資料
private int resource;// 綁定的一個條目介面的id,此例中即為item.xml
private LayoutInflater inflater;// 布局填充器,它可以使用一個xml檔案產生一個View對象,可以通過Context擷取執行個體對象

public PersonAdapter(Context context, List persons, int resource) {
inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
this.resource = resource;
this.persons = persons;
}

@Override
public int getCount() {// 得到要繫結資料總數
return persons.size();
}

@Override
public Object getItem(int position) {// 給定索引值,得到索引值對應的對象
return persons.get(position);
}

@Override
public long getItemId(int position) {// 擷取條目id
return position;
}

// ListView有緩衝功能,當顯示第一頁頁面時會建立頁面對象,顯示第二頁時重用第一頁建立好了的對象
// 取得條目介面:position代表當前條目所要繫結資料在集合中的索引值
@Override
public View getView(int position, View convertView, ViewGroup parent) {
TextView nameView = null;
TextView phoneView = null;
TextView amountView = null;
if (convertView == null) {// 顯示第一頁的時候convertView為空白
convertView = inflater.inflate(resource, null);// 產生條目對象
nameView = (TextView) convertView.findViewById(R.id.name);
phoneView = (TextView) convertView.findViewById(R.id.phone);
amountView = (TextView) convertView.findViewById(R.id.amount);

ViewCache cache = new ViewCache();
cache.amountView = amountView;
cache.nameView = nameView;
cache.phoneView = phoneView;
convertView.setTag(cache);
} else {
ViewCache cache = (ViewCache) convertView.getTag();
amountView = cache.amountView;
nameView = cache.nameView;
phoneView = cache.phoneView;
}

Person person = persons.get(position);
// 實現資料繫結
nameView.setText(person.getName());
phoneView.setText(person.getPhone());
amountView.setText(person.getAmount());
return convertView;
}

private final class ViewCache {
public TextView nameView;
public TextView phoneView;
public TextView amountView;
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.