CountDownView

General

Category
Free
Tag
Views
License
N/A
Min SDK
9 (Android 2.3–2.3.2 Gingerbread)
Registered
Feb 26, 2016
Favorites
11
Link
https://github.com/alexfu/CountDownView
See also
LabelView
FabricView
FlippableStackView
ComplexView
PullDownView

Additional

Language
Java
Version
N/A
Created
May 9, 2013
Updated
Oct 3, 2020 (Retired)
Owner
Alex Fu (alexfu)
Contributors
Alex Fu (alexfu)
Alfred Ayi-Bonte (alfredayibonte)
Shubham Pathak (tronku)
3
Activity
Badge
Generate
Download
Source code

CountDownView

A simple view that does a temporal count down with fields - Hours, Minutes and Seconds.

Installation

Pull in CountDownView from Jitpack.

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

dependencies {
  implementation 'com.github.alexfu:CountDownView:0.1.0'
}

Usage

Include in your layout.

<com.alexfu.countdownview.CountDownView
    android:id="@+id/count_down"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="@style/TextAppearance.AppCompat.Display1"
    app:startDuration="60000"/>

Then, in your Activity/Fragment, obtain the view and call start().

CountDownView countDownView = findViewById(R.id.count_down);
countDownView.start();