Api/RestAPI

    Okhttp/gson/cloud vision

    implementation 'com.squareup.okhttp3:okhttp:3.14.1' implementation 'com.google.code.gson:gson:2.8.5' gson https://choiyb2.tistory.com/82 okhttp3 https://whereisusb.tistory.com/55 google Cloud vision https://jungwoon.github.io/google%20cloud/2018/01/09/Vision-Api/

    Glide 이미지 로딩

    공식 git site https://github.com/bumptech/glidedependencies { implementation 'com.github.bumptech.glide:glide:4.9.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0' }사용방법-이미지 뷰와 Glide가 gradle 에 설치되어있어야 한다 .-링크를 통해 가져오는 방법이다 .@Override public void onCreate(Bundle savedInstanceState) { ... ImageView imageView = (ImageView) findViewById(R.id.my_image_view); Glide.with(this).load("http:..