skip to Main Content

Android Studio – Display an image using Glide in Android. Can't see anything

I'm trying to display an image using Glide in my ImageView to no avail. I don't get any errors, but I don't see any image either build.gradle dependencies: implementation 'com.github.bumptech.glide:glide:4.12.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0' my ImageView Layout: <ImageView android:id="@+id/profilPicture" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true"…

VIEW QUESTION
Back To Top
Search