PulseView
PulseView copied to clipboard
PulseView pauses with background color filled
I have implemented the pulse view . I m getting a issue. It works fine on normal scenario But sometimes when i return back to the activity / fragment i have a huge background color with the color that is setup for pulseview and loos like pulse has frozon
I have the same issue, also the finishPulse() method is not working properly when I navigate to another fragment within a viewpager.
@basmaessen i partially solved this by using finishing the pulse in onPause override method like this.
@Override
public void onPause() {
super.onPause();
pulseView.finishPulse();
pulseView.refreshDrawableState();
}