/ PROJECT, ANDROID, ROLL-DIGIT, TDD

Digit roll counter - 회전 점수판

안드로이드에서 회전하는 숫자판 컴포넌트입니다.

digit roll counter

자연스럽게 숫자가 회전하다가 마지막에 특정숫자만큼 더해지는 효과를 구현가능합니다. Demo캡쳐는 +1을 수행하게 되어 있습니다.

DEMO

Step 1. Add the JitPack repository to your build file

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

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

Step 2. Add the dependency

	dependencies {
	        implementation 'com.github.mond-al:digit-roll-numbers:0.2'
	}

Step3. Just Use it!

표시할 숫자, 마지막에 더해질 숫자(default=1) 그리고 콤마 사용 여부(default=false)를 인자로 받습니다.

<com.al.mond.digitcounter.DigitCounter
    android:id="@+id/counter"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
val counter = findViewById<DigitCounter>(R.id.counter)
counter.set(1000, 1, false)

Todo

  • fix digits
  • comma option

Search

Get more post