摘要: 一般adapter的做法会重写getView方法比如 1 @Override 2 public View getView(int position, View convertView, ViewGroup parent) { 3 if (convertView == null) { 4 convertView = LayoutInflater.from(context).inflate(R.layout.contentitem, null); 5 } 6 TextView title = (TextView) co... 阅读全文
posted @ 2013-08-26 23:25 HighFUN 阅读(910) 评论(0) 推荐(0) 编辑