Skip to content

监听器

SamLeung edited this page Dec 7, 2018 · 2 revisions

你可以通过以下方法设置监听器:

Bloom.with(this)
    .setParticleRadius(5)
    .setBloomListener(new BloomListener() {
        @Override
        public void onBegin() {
            //动画开始
        }

        @Override
        public void onEnd() {
	    //动画结束
        }
    })
    .boom(view);
Clone this wiki locally