# CountDownView **Repository Path**: timandroid/CountDownView ## Basic Information - **Project Name**: CountDownView - **Description**: A simple countdown View for the Android framework. - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-11-17 - **Last Updated**: 2022-09-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CountDownView A simple view that does a temporal count down.
# Installation Pull in CountDownView from Jitpack... ```gradle allprojects { repositories { maven { url 'https://jitpack.io' } } } dependencies { implementation 'com.github.alexfu:CountDownView:0.1.0' } ``` # Usage Include in your layout... ```xml ``` Then, in your Activity/Fragment, obtain the view and call `start()`. ```java CountDownView countDownView = findViewById(R.id.count_down); countDownView.start(); ```