You can call .override(horizontalSize, verticalSize). This will resize the image before displaying it in the ImageView.
Glide.with(context)
.load(url)
.override(horizontalSize, verticalSize)//resizes the image to these dimensions (in pixel).
.into(img);