본문 바로가기

코리아 IT아카데미/android21

15,16,17일차 | 영화 평점 소개 사이트 <- 녹화본으로 흐름 파악할 것 //todo info bottom 안되는 것 해결하기 코드 추가 AndroidManifest.xml build.gradle buildTypes { ... buildFeatures{ // dataBinding true viewBinding { enabled true } } } def retrofit_version ="2.9.0" dependencies { ... implementation "com.squareup.retrofit2:retrofit:$retrofit_version" implementation "com.squareup.retrofit2:converter-gson:$retrofit_version" implementation 'com.github.bumptech.glide:glide:4.12.0'.. 2022. 3. 8.
15일차 | 지금까지 한 것 다 합한 예제 //https://eva.design/ https://yts.lt/api/v2/list_movies.json?limit=20&page=1&sort_by=rating https://www.jsonschema2pojo.org/ Eva Design System Open Source Code Libraries No need to spend thousands of hours for implementation, testing and maintenance. Eva is supported by well known Angular and React Native UI component libraries. More to come. eva.design jsonschema2pojo Reference properties For e.. 2022. 3. 7.
14일차 | 레트로핏 사용 (http 통신을 할 수 있도록 도와주는) ?mode=LSD&mid=shm&sid1=104&oid=052&aid=0001709207 { "cds" :"news_media_PC" } 사이트 https://jsonplaceholder.typicode.com/ retrofit2 https://square.github.io/retrofit/ https://www.jsonschema2pojo.org/ https://www.data.go.kr/index.do 네트워크 통신 받기 jsonschema2pojo Reference properties For each property present in the 'properties' definition, we add a property to a given Java class according to the JavaBe.. 2022. 3. 4.
13일차 | http 통신 ? 못 알아 들겠음 Google 에서 다운로드 Talend API Tester -> 포스트맨 대신 사용 가상의 json 파일 : https://jsonplaceholder.typicode.com/ https://github.com/google/gson implementation 'com.google.code.gson:gson:2.9.0' 코드 추가 MainActivity.java package com.example.myhttpconnection; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.widget.TextView; import com.example.myhttp.. 2022. 3. 3.