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);
}
이렇게 할 경우 리스트뷰에 아이디는 아이디 끼리 시간은 시간끼리 등 함께 몰려서 구현됩니다. 각 리스트뷰에 아이디
하나씩 내용 하나씩 등등으로 구현 할 수 있는 방법 문의 드립니다..
comment