标签: android android-imageview android-glide image-scaling
我熟悉fitcenter和centercrop滑翔。但是有可能制作出像这样的图像
实现它的任何想法?
答案 0 :(得分:1)
使用两个imageViews。一个小于另一个。然后使用此library并将此代码用作背景图像
Glide.with(this).load(R.drawable.demo) .apply(bitmapTransform(new BlurTransformation(25))) .into((ImageView) findViewById(R.id.image));