PulseView icon indicating copy to clipboard operation
PulseView copied to clipboard

PulseView pauses with background color filled

Open shubham-agr opened this issue 6 years ago • 2 comments

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

shubham-agr avatar Mar 15 '18 06:03 shubham-agr

I have the same issue, also the finishPulse() method is not working properly when I navigate to another fragment within a viewpager.

basmaessen avatar Mar 28 '18 12:03 basmaessen

@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();
    }

shubham-agr avatar Mar 29 '18 00:03 shubham-agr