shts
StoriesProgressView
Java

show horizontal progress like instagram stories.

Last updated Jul 1, 2026
890
Stars
201
Forks
40
Issues
0
Stars/day
Attention Score
61
Language breakdown
Java 100.0%
โ–ธ Files click to expand
README

StoriesProgressView ====

Library that shows a horizontal progress like Instagram stories.

^She is Yui Kobayashi

How to Use


To see how a StoriesProgressView can be added to your xml layouts, check the sample project.

<jp.shts.android.storiesprogressview.StoriesProgressView
        android:id="@+id/stories"
        android:layoutwidth="matchparent"
        android:layout_height="3dp"
        android:layout_gravity="top"
        android:layout_marginTop="8dp" />
Overview
public class YourActivity extends AppCompatActivity implements StoriesProgressView.StoriesListener {
    private StoriesProgressView storiesProgressView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

storiesProgressView = (StoriesProgressView) findViewById(R.id.stories); storiesProgressView.setStoriesCount(PROGRESS_COUNT); // <- set stories storiesProgressView.setStoryDuration(1200L); // <- set a story duration storiesProgressView.setStoriesListener(this); // <- set listener storiesProgressView.startStories(); // <- start progress }

@Override public void onNext() { Toast.makeText(this, "onNext", Toast.LENGTH_SHORT).show(); }

@Override public void onPrev() { // Call when finished revserse animation. Toast.makeText(this, "onPrev", Toast.LENGTH_SHORT).show(); }

@Override public void onComplete() { Toast.makeText(this, "onComplete", Toast.LENGTH_SHORT).show(); }

@Override protected void onDestroy() { // Very important ! storiesProgressView.destroy(); super.onDestroy(); } }

Skip and Reverse story


storiesProgressView.skip();
  storiesProgressView.reverse();

Pause and Resume story


storiesProgressView.pause();
  storiesProgressView.resume();

Install


Add it in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Add the dependency

dependencies {
    implementation 'com.github.shts:StoriesProgressView:3.0.0'
}

License


Copyright (C) 2017 Shota Saito(shts)

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

ยฉ 2026 GitRepoTrend ยท shts/StoriesProgressView ยท Updated daily from GitHub