All Projects → CaMnter → Easycountdowntextureview

CaMnter / Easycountdowntextureview

Licence: apache-2.0
⏱ Easy count down by TextureView

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to Easycountdowntextureview

nypsi
the best discord bot
Stars: ✭ 41 (-92.34%)
Mutual labels:  countdown
Web-Time-Tracker
Plugin named Timetracker is a time counter that works in both increase and decrease directions.
Stars: ✭ 21 (-96.07%)
Mutual labels:  countdown
Oycountdownmanager
在cell中使用倒计时的处理方法, 全局使用一个NSTimer对象, 支持单列表.多列表.多页面.分页列表使用
Stars: ✭ 317 (-40.75%)
Mutual labels:  countdown
Glaedr
An extensive, modular functional scoreboard library for the Bukkit/Spigot API.
Stars: ✭ 23 (-95.7%)
Mutual labels:  countdown
yii2-time-down-counter
Widget for yii2, to start count down timer with a lot of options, This widget build dependence of timeDownCounter JS library
Stars: ✭ 15 (-97.2%)
Mutual labels:  countdown
ClassClock
ClassClock is a free, easy-to-use web app for K-12 schools that provides an at-a-glance view of the school schedule
Stars: ✭ 27 (-94.95%)
Mutual labels:  countdown
CountdownView
Simple countdown view with custom animations
Stars: ✭ 70 (-86.92%)
Mutual labels:  countdown
Jkcountdownbutton
JKCountDownButton,子类化UIButton实现IOS倒计时按钮,常常用于注册等发送验证码的时候进行倒计时操作
Stars: ✭ 436 (-18.5%)
Mutual labels:  countdown
moveit
Move.it is a project that combines the pomodoro (🍅 ) technique with some challenges (⚔️ ) for the well-being (🥰 ) of those who spend many hours (⏳ ) using the computer 🖥
Stars: ✭ 12 (-97.76%)
Mutual labels:  countdown
Efcountinglabel
Adds animated counting support to UILabel.
Stars: ✭ 311 (-41.87%)
Mutual labels:  countdown
alfred-timer-workflow
Alfred workflow to start a timer, which blinks when the time is up.
Stars: ✭ 39 (-92.71%)
Mutual labels:  countdown
react-component-countdown-timer
This is a simple count down timer react component.
Stars: ✭ 18 (-96.64%)
Mutual labels:  countdown
Countdownview
Android Countdown View
Stars: ✭ 2,869 (+436.26%)
Mutual labels:  countdown
vue-flip-down
vue 翻页倒计时组件 妙啊
Stars: ✭ 90 (-83.18%)
Mutual labels:  countdown
Vue Countdown
Countdown component for Vue.js.
Stars: ✭ 393 (-26.54%)
Mutual labels:  countdown
osx-statusbar-countdown
⏳📅 A utility to count down to a date from your macOS menubar, written in Swift
Stars: ✭ 40 (-92.52%)
Mutual labels:  countdown
ZXCountDownView
【杀不死的倒计时】一个简单易用的倒计时View,常用于快速创建点击获取验证码按钮,支持各种自定义样式。(特点:重新进入当前页面或重启程序倒计时不会重置,仍将继续执行,且退出程序后的时间也会被自动计算在内)
Stars: ✭ 56 (-89.53%)
Mutual labels:  countdown
Flip
⏳ The online version of the classic flip clock
Stars: ✭ 460 (-14.02%)
Mutual labels:  countdown
React Countdown
A customizable countdown component for React.
Stars: ✭ 402 (-24.86%)
Mutual labels:  countdown
Timer.jquery
jQuery Timer: Start/Stop/Resume/Remove pretty timer inside any HTML element.
Stars: ✭ 283 (-47.1%)
Mutual labels:  countdown

EasyCountDownTextureView


Language License Version SDK Download

Easy count down by TextureView



Attention

minSdkVersion >= 14



Gradle

dependencies {
	compile 'com.camnter.easycountdowntextureview:easycountdowntextureview:1.6'
}


Attributes

<declare-styleable name="EasyCountDownTextureView">
    <attr name="easyCountRectWidth"
        format="dimension"/>
    <attr name="easyCountRectHeight"
        format="dimension"/>
    <attr name="easyCountRectRadius"
        format="dimension"/>
    <attr name="easyCountRectBorderSize"
        format="dimension"/>
    <attr name="easyCountRectBorderColor"
        format="color"/>
    <attr name="easyCountRectBorderStroke"
        format="dimension"/>
    <attr name="easyCountRectSpacing"
        format="dimension"/>
    <attr name="easyCountTimeColor"
        format="color"/>
    <attr name="easyCountTimeSize"
        format="dimension"/>
    <attr name="easyCountTimeStroke"
        format="dimension"/>
    <attr name="easyCountColonColor"
        format="color"/>
    <attr name="easyCountColonSize"
        format="dimension"/>
    <attr name="easyCountColonStroke"
        format="dimension"/>
    <attr name="easyCountBackgroundColor"
        format="color"/>
    <attr name="easyCountHour"
        format="integer"/>
    <attr name="easyCountMinute"
        format="integer"/>
    <attr name="easyCountSecond"
        format="integer"/>
</declare-styleable>


Easy use

<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="50dp"
    android:background="#ffffffff">

    <ImageView
        android:layout_width="196dp"
        android:layout_height="158dp"
        android:layout_marginTop="26dp"
        android:scaleType="centerCrop"
        android:src="@mipmap/bg_fruit" />

    <com.camnter.easycountdowntextureview.EasyCountDownTextureView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:easyCountHour="6"
        app:easyCountMinute="6"
        app:easyCountSecond="26" />

</RelativeLayout>

TextureView_1


<com.camnter.easycountdowntextureview.EasyCountDownTextureView
    android:id="@+id/style_tv"
    android:layout_width="132dp"
    android:layout_height="36dp"
    app:easyCountBackgroundColor="#ffdddddd"
    app:easyCountColonColor="#ffdddddd"
    app:easyCountColonSize="20sp"
    app:easyCountHour="6"
    app:easyCountMinute="6"
    app:easyCountRectHeight="34dp"
    app:easyCountRectRadius="5dp"
    app:easyCountRectSpacing="12dp"
    app:easyCountRectWidth="36dp"
    app:easyCountSecond="26"
    app:easyCountTimeColor="#ff3A94FF"
    app:easyCountTimeSize="20sp" />

TextureView_2



Performance

Without scrolling, only time in the refreshing



License

  Copyright (C) 2016 CaMnter [email protected]

  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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].