Android/간단한 뉴스 앱 만들기(기초)
간단한 뉴스 앱 만들기 #3 - newsapi로 데이터 받아오기
간단한 뉴스 앱 만들기 #3 - newsapi로 데이터 받아오기 먼저 adapter에 데이터를 보낼 때 뉴스 데이터를 넘겨야 한다. 뉴스 데이터들은 제목, 이미지, 내용을 포함하고 있다. 이를 객체화 해서 보내는 것이 효율적이므로 news data를 저장할 class를 만들어 두자. package com.example.newstest; import java.io.Serializable; public class NewsData implements Serializable { private String title, urlToImage, content; public String getTitle() { return title; } public void setTitle(String title) { this.titl..
2021. 1. 17. 23:58
최근댓글