Open gulzar1996 opened 7 years ago
I'm going to add isRunning()
method at next release.
This is still a massive issue...any ETA on a fix?
@Xenero @gulzar1996 I cannot take the time. This is work around.
public class YourActivity extends AppCompatActivity implements StoriesProgressView.StoriesListener {
private StoriesProgressView storiesProgressView;
private boolean isRunning = false;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
storiesProgressView.startStories(); // <- start progress
isRunning = true;
}
...
@Override
public void onComplete() {
isRunning = false;
}
}
How does that work around do anything at all? I could suggest that you allow one of us to become a moderator to allow and review pull requests as this library is extremely useful if executed properly.
Is it possible to determine if the Story progress View is running ? progessview.startstories() progressview.resume() when called causes multiple progress view to run simultaneously!