로그인 바로가기 하위 메뉴 바로가기 본문 바로가기
난이도
심화

안드로이드 앱 프로그래밍

임시 이미지 정재곤
http://www.boostcourse.org/mo316/forum/5675
좋아요 1436 수강생 20115
public void processResponse(String response) {
Gson gson = new Gson();
ResponseInfo info = gson.fromJson(response, ResponseInfo.class);

if (info.code == 200) {
CommentList commentList = gson.fromJson(response, CommentList.class);

for (int i=0; i< commentList.result.size(); i++) {
Comment comment = commentList.result.get(i);

println(comment.id);
println1(comment.time);
println2(comment.contents);
println3(comment.recommend);
}

}
}

public void println (String data) {
id.append(data);
}

public void println1 (String data) {

textViewtime.append(data);
}

public void println2 (String data) {

textViewcontent.append(data);
}

public void println3 (String data) {

num.append(data);
}

이렇게 할 경우 리스트뷰에 아이디는 아이디 끼리 시간은 시간끼리 등 함께 몰려서 구현됩니다. 각 리스트뷰에 아이디
하나씩 내용 하나씩 등등으로 구현 할 수 있는 방법 문의 드립니다..