-1
我使用下面庫來模糊效果設置爲我的ImageView
https://github.com/wasabeef/Blurry如何刪除'ImageView'中的模糊效果?
但我不能夠刪除模糊效果!
我的代碼:
Blurry.with(mContext)
.radius(5)
.sampling(2)
.async()
.animate(500)
.capture(view.findViewById(R.id.ivMemoriesPic))
.into((ImageView) view.findViewById(R.id.ivMemoriesPic));
我使用下面的代碼刪除效果:
Blurry.delete((ViewGroup) findViewById(R.id.content));
按文件說,上面的代碼是ViewGroup
我嘗試使用imageView
,但delete
方法獲取ViewGroup
參數。
請幫我一樣嗎?
只需將圖像重新加載到ImageView **中,而不需要應用模糊。解決了。 –