Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- spring exception stackTrace remove
- 운영체제 공룡책
- aws ec2 scp 파일 전송
- 운영체제 멀티 태스킹
- IT 직무 변경
- spring paging sort sql injection
- 개발 직무 변경
- spring exceptionHandler response cause
- spring 동적 쿼리 주의사항
- 운영체제 자원관리
- spring sql injection
- spring sql injection 방지
- 운영체제 멀티 프로그래밍
- 운영체제 개념
- Android Timer
- 운영체제 작동방식
- spring exceptionHandler reposnse stackTrace
- spring responseEntity response cause
- spring responseEntity response stackTrace
- OS 자원관리
- 백엔드 직무 변경
- spring exception cause remove
- android 타이머
- 백엔드 포지션 변경
- 운영체제 다중모드
- spring dynamic query sql injection
- IT 포지션 변경
- 개발 포지션 변경
- 운영체제 커널모드
- ec2 scp 파일 전송
Archives
- Today
- Total
목록android TimerView (1)
오늘도 삽질중
흔히 모바일에서 문자인증을 하게되면 이런 화면을 많이 보셨을껍니다.android 에서는 Timer 나 CountDownTimer 또는 스레드와 핸들러 조합으로 타이머 구현이 가능합니다. 하지만 CountDownTimer는 간헐적으로 시간이 맞지 않는 증상도 있고 스레드와 핸들러를 조합하면 로직이 복잡해지는 단점이 있습니다.그래서 간단하게 직접 구현해 봤습니다. java파일을 추가해 주시고 TimerView.javaimport android.animation.ObjectAnimator; import android.content.Context; import android.util.AttributeSet; import android.view.animation.LinearInterpolator; public c..
안드로이드
2019. 7. 31. 14:16