我使用 https://github.com/wasabeef/Blurry库。
<{1>}中的,以下代码有效。
Onclick
但是当我在private boolean blurred = false;
if (blurred) {
Blurry.delete((ViewGroup) findViewById(R.id.content));
} else {
long startMs = System.currentTimeMillis();
Blurry.with(MainActivity.this)
.radius(25)
.sampling(2)
.async()
.animate(500)
.onto((ViewGroup) findViewById(R.id.content));
}
blurred = !blurred;
中添加以下代码时,它不起作用。
OnCreate