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 |
Tags
- 개발 포지션 변경
- spring exception stackTrace remove
- ec2 scp 파일 전송
- spring responseEntity response cause
- 운영체제 공룡책
- 운영체제 멀티 태스킹
- spring 동적 쿼리 주의사항
- IT 직무 변경
- android 타이머
- 운영체제 작동방식
- 운영체제 다중모드
- 운영체제 개념
- 운영체제 멀티 프로그래밍
- spring exceptionHandler reposnse stackTrace
- Android Timer
- spring paging sort sql injection
- 운영체제 커널모드
- spring sql injection 방지
- spring exception cause remove
- spring dynamic query sql injection
- IT 포지션 변경
- 개발 직무 변경
- aws ec2 scp 파일 전송
- 백엔드 포지션 변경
- spring exceptionHandler response cause
- OS 자원관리
- 운영체제 자원관리
- spring responseEntity response stackTrace
- 백엔드 직무 변경
- spring sql injection
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