본문 바로가기

분류 전체보기556

안드로이드 스튜디오, JAVA] 실습 : 레트로핏, 리사이클러뷰, 피카소를 이용한 영화 앱 만들기. 사용할 포스팅 : https://itstudy-mary.tistory.com/222 안드로이드 스튜디오, JAVA 실습 : 영화 API 사이트에서 데이터 가져오기 이용하는 개념 포스팅 : https://itstudy-mary.tistory.com/221 안드로이드 스튜디오, JAVA] Retrofit2를 이용하여 데이터 통신하기 https://square.github.io/retrofit/ Retrofit A type-safe HTTP client for An.. itstudy-mary.tistory.com 결과화면 : (연결될 의존성) 앱 수준의 build.gradle : implementation 'com.squareup.picasso:picasso:2.71828' implementation 'com.. 2020. 7. 31.
Android Studio, JAVA] 피카소, Glide 라이브러리 리소스가 파일로 존재하는 경우에는 괜찮지만, 이미지 파일이 외부 uri로 지정된 경우에는 라이브러리를 이용해야한다. 주로 이용하는 라이브러리는 Picasso와 Glide 라는 라이브러리이다. Picasso Introduction Images add much-needed context and visual flair to Android applications. Picasso allows for hassle-free image loading in your application—often in one line of code! Picasso.get().load("http://i.imgur.com/DvpvklR.png").into(imageView); Many c square.github.io https://git.. 2020. 7. 31.
안드로이드 스튜디오, JAVA 실습 : 영화 API 사이트에서 데이터 가져오기 이용하는 개념 포스팅 : https://itstudy-mary.tistory.com/221 안드로이드 스튜디오, JAVA] Retrofit2를 이용하여 데이터 통신하기 https://square.github.io/retrofit/ Retrofit A type-safe HTTP client for Android and Java square.github.io 레트로핏을 이용하기 위해서는 다음과 같이 의존성을 추가로 걸어야 한다. (앱 단위의 Gradle) imp.. itstudy-mary.tistory.com 사용할 영화 API는 다음 페이지에서 가져온다. https://yts.mx/api API Documentation - YTS YIFY Official YTS YIFY API documentation. .. 2020. 7. 30.
안드로이드 스튜디오, JAVA] Retrofit2를 이용하여 데이터 통신하기 https://square.github.io/retrofit/ Retrofit A type-safe HTTP client for Android and Java square.github.io 레트로핏을 이용하기 위해서는 다음과 같이 의존성을 추가로 걸어야 한다. (앱 단위의 Gradle) implementation 'com.squareup.retrofit2:retrofit:2.9.0' implementation group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.8.1' 간단한 예시 사이트는 다음과 같다. https://codinginflow.com/tutorials/android/retrofit/part-1-simple-get-req.. 2020. 7. 29.
반응형