1) Add below dependencies into app/build.gradle
annotationProcessor 'com.github.bumptech.glide:compiler:your_glide_version'
2) поместите android: largeHeap = "true" в тег файла манифеста
3) и используйте как показано ниже
ImageView imageView = (ImageView) findViewById(R.id.my_image_view);
Glide.with(context) // this
.load(imagePath)
.placeholder(R.drawable.loading_spinner)
.into(imageView);