我正在尝试设置模糊图像库 https://github.com/wasabeef/Blurry 但是我没有onclick监听器这是不行的,这里是我的java代码
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Blurry.with(MainActivity.this)
.radius(25)
.sampling(2)
.async()
.animate(500)
.onto((ViewGroup) findViewById(R.id.relate));
}
但是当我在点击监听器上设置模糊时它可以工作,所以有人可以告诉我如何在没有点击监听器的情况下做到这一点