기술참고자료/Android | 2011. 10. 18. 10:25
아래는 검색했던 블로그의 포스트내용...@Override
public View getView(int position, View convertView, ViewGroup parent) {
final ViewHolder holder;LayoutInflater inf = activity.getLayoutInflater();
View customcell = inf.inflate(R.layout.layout_list_cell, null);VO vo = (VO) cellArray.get(position);TextView total_list_cell_textView01 = (TextView) customcell.findViewById(R.id.comment_name);
TextView total_list_cell_textView02 = (TextView) customcell.findViewById(R.id.comment_date);
TextView total_list_cell_textView03 = (TextView) customcell.findViewById(R.id.comment_content);
total_list_cell_textView01.setText(vo.getContentTitle());
total_list_cell_textView02.setText(vo.getProfileImg());
total_list_cell_textView03.setText(vo.getContentText());
holder = new ViewHolder();
ButtonEvent deleteEvent = new ButtonEvent(this.activity);holder.deleteButton = (ImageButton) customcell.findViewById(R.id.deleteButton);
holder.deleteButton.setOnClickListener(deleteEvent);return customcell;
}
static class ViewHolder {
ImageButton deleteButton;
}
reference : http://developer.android.com/reference/android/widget/ListView.html
[Android] SSL 연결하는 방법 (0) | 2011.11.02 |
---|---|
[Android] ADB 이용해서 패킷 덤프 뜨는 방법 (1) | 2011.11.02 |
[Android] ListView에 내용이 없을때 (0) | 2011.10.18 |
[Android] 미디어 갤러리를 이용한 파일첨부 (0) | 2011.10.18 |
[Android] TableView 모서리 둥글게 처리하기 (0) | 2011.10.18 |
Recent Comments