BndrsntchTimer

Additional

Language
Java
Version
v2.0.0 (Jun 27, 2020)
Created
Jun 14, 2019
Updated
Jun 27, 2020 (Retired)
Owner
Purushottam Pawar (iamporus)
Contributors
Purushottam Pawar (iamporus)
Martin Böh (MartB)
2
Activity
Badge
Generate
Download
Source code

BndrsntchTimer

A horizontal progress bar shrinking with time; similar to Bandersnatch choice interface.

Inspiration

Preview

Gradle

  • Step 1. Add the JitPack repository to your build file.

Add following in your Project level build.gradle at the end of repositories:

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}
  • Step 2. Add the dependency
dependencies {
  ...
  implementation 'com.github.iamporus:BndrsntchTimer:x.y.z'
}

The latest version of BndrsntchTimer is

Usage

XML

 <com.prush.bndrsntchtimer.BndrsntchTimer
    android:id="@+id/timer"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginBottom="8dp"
    app:progress_color="@android:color/white"/>
            

Java

final BndrsntchTimer bndrsntchTimer = findViewById( R.id.timer );

//add the lifecycle observer
getLifecycle().addObserver( bndrsntchTimer.getLifecycleObserver() );

//set progress color
bndrsntchTimer.setProgressColorInt( android.R.color.holo_blue_bright );

bndrsntchTimer.start( 10000 );

//attach listener
bndrsntchTimer.setOnTimerElapsedListener( new BndrsntchTimer.OnTimerElapsedListener()
{
    @Override
    public void onTimeElapsed( long elapsedDuration, long totalDuration )
    {
        if( elapsedDuration >= totalDuration )
        {
            //Timer elapsed.
        }
    }
});

//reset it for repeated usage.
bndrsntchTimer.reset();

// set duration along with listener
bndrsntchTimer.start( 5000, new BndrsntchTimer.OnTimerElapsedListener()
{
    @Override
    public void onTimeElapsed( long elapsedDuration, long totalDuration )
    {
        if( elapsedDuration >= totalDuration )
        {
            //Timer elapsed.
        }
    }
});

License

Copyright 2019 Purushottam Pawar

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.