회원 로그인 후 회원 정보를 가져와서 ProfileView 함수에 처리하는 로직이다.
private void ProfileView() { |
앱 build.gradle 추가
implementation 'com.github.bumptech.glide:glide:4.11.0' |
Glide.with(this)
.load("이미지 url...")
.override(이미지 사이즈) // ex) override(170, 200)
.into(imageView);
Glide 최신버전 확인 : https://github.com/bumptech/glide
참고하면 도움되는 자료
AsyncTask return 결과 처리하는 방법 : https://link2me.tistory.com/1516
[Java] SharedPreferences Singleton : https://link2me.tistory.com/1827
'안드로이드 > Android 활용' 카테고리의 다른 글
Android TextToSpeech (0) | 2020.09.30 |
---|---|
Intent 이메일 전송하기 (0) | 2020.09.08 |
안드로이드 7.0 이상 Install APK Programmatically (Update) (10) | 2020.06.26 |
[Java] Singleton 패턴 예제 : PrefsHelper (0) | 2020.05.02 |
Material Design Navigation Drawer (0) | 2020.03.28 |