-
Notifications
You must be signed in to change notification settings - Fork 13
Listener
SamLeung edited this page Dec 7, 2018
·
4 revisions
You can set the listener by the following ways.
Bloom.with(this)
.setParticleRadius(5)
.setBloomListener(new BloomListener() {
@Override
public void onBegin() {
//on bloom begin
}
@Override
public void onEnd() {
//on bloom end
}
})
.boom(view);