編輯:關於Android編程
復制代碼 代碼如下:
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;
}
}
Android Camera TakePicture過程分析 接著上一篇文章,繼續講解camera拍照等具體功能實行流程 Camera子系統采用C/S架構,客戶端和服務
先上圖: 省市縣三級聯動,選地址經常用到用NumberPicker控件實現滑動,json數據解析使用fastjson框架使用很簡單,傳入一個String[
概述: 如果你想要在一個TextView顯示一個被高亮顯示的子字符串。例如,我想讓123456789中的345被高亮顯示。注意,我這裡指的只高亮一部分,而不是全部高亮。你
NDK是什麼?Android平台是基於java實現,運行於虛擬機Dalvik;故而使用Android SDK創建應用程序需要使用java語言來編寫實現。不過並不僅限於使用