텍스트뷰에 한글을 첫가끝으로 분해하여 타이핑하는 것처럼 입력합니다. 두벌식을 사용할때 처럼 도깨비불현상은 구현중입니다.
Typer.typing(textView, "타이핑할 문자열", useCursor){
Toast.makeText(this, "타이핑 끝", Toast.LENGTH_SHORT).show()
}
첫 배포. 아직은 아주 간단한 수준의 타이핑 효과를 줄수 있습니다.
- 데이터 최적화
- 도깨비불현상구현
- 구간 지우고 다시 쓰기
Step 1. 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:typer:Tag'
}
Step3. Just Use it!
Typer.typing(textView, "타이핑할 문자열", useCursor){
Toast.makeText(this, "타이핑 끝", Toast.LENGTH_SHORT).show()
}