이번에는 network 을 살펴본다
// TODO (1) Fill in this method to build the proper Github query URL
1. buildUrl method를 완성시킨다.
utilities 라는 package를 새로 생성. NetworkUtils 라는 class도 생성
AS-IS : 껍데기만 있음
public static URL buildUrl(String githubSearchQuery) { |
-> TO-BE : 동작
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Scanner;
import java.net.MalformedURLException;
import java.net.URL;
final static String GITHUB_BASE_URL = "https://api.github.com/search/repositories";
final static String PARAM_QUERY = "q";
final static String PARAM_SORT = "sort";
final static String sortBy = "stars";
public static URL buildUrl(String githubSearchQuery) { |
// TODO (2) Create a method called makeGithubSearchQuery
// TODO (3) Within this method, build the URL with the text from the EditText and set the built URL to the TextView
MainActivity 에서 method 추가한 뒤에 내용을 넣는다.
사용자가 입력한 EditText의 내용으로 github에 조회할 전체경로를 TextView에 보여준다.
private void makeGithubSearchQuery() { |
// TODO (4) Remove the Toast message when the search menu item is clicked
// TODO (5) Call makeGithubSearchQuery when the search menu item is clicked
클릭버튼 동작유무를 확인하기 위한 ToastMessage를 제거하고
makeGithubSearchQuery를 호출한다.
@Override |
앱을 실행시켜보면
queen이라는 단어 입력 후 Search버큰을 클릭하면
github로 날릴 조회쿼리가 표시된다.
아직 실제로 쿼리를 날린것이 아니므로 결과는 안나온다