I am familiar with fitcenter and centercrop in glide. But is it possible to make something like this image
Any ideas to achieve it?
I am familiar with fitcenter and centercrop in glide. But is it possible to make something like this image
Any ideas to achieve it?
Use two imageViews. One smaller and above the other. Then use this library and use this piece of code for the background image
Glide.with(this).load(R.drawable.demo)
.apply(bitmapTransform(new BlurTransformation(25)))
.into((ImageView) findViewById(R.id.image));