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 responseEntity response cause
- 운영체제 작동방식
- spring responseEntity response stackTrace
- spring 동적 쿼리 주의사항
- aws ec2 scp 파일 전송
- spring sql injection
- 개발 포지션 변경
- Android Timer
- IT 포지션 변경
- 운영체제 개념
- spring exception stackTrace remove
- 운영체제 자원관리
- spring dynamic query sql injection
- spring exception cause remove
- android 타이머
- ec2 scp 파일 전송
- 운영체제 멀티 태스킹
- OS 자원관리
- spring exceptionHandler response cause
- 운영체제 공룡책
- spring paging sort sql injection
- 운영체제 멀티 프로그래밍
- spring sql injection 방지
- spring exceptionHandler reposnse stackTrace
- 백엔드 직무 변경
- 백엔드 포지션 변경
- 운영체제 커널모드
- IT 직무 변경
Archives
- Today
- Total
목록안드로이드 텍스트뷰에 밑줄 그리기 (1)
오늘도 삽질중
android textview에 밑줄을 그려야하는 경우가 있는데요. 저같은 경우에는 직접 커스텀뷰로 구현하고 그걸 xml에 호출하는 방식으로 구현해 보았습니다. 1 . Java 클래스를 새로 만듭니다.저의 경우에는 UnderlineTextView 로 이름을 지었지만 임의로 아무거나 해주셔도 상관이 없습니다. import android.annotation.SuppressLint; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graph..
안드로이드
2019. 2. 4. 01:44