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
- Coroutine
- kotlin
- activity
- 안드로이드
- AppBarLayout
- CustomView
- View
- CollapsingToolbarLayout
- 알고리즘
- DataBinding
- Algorithm
- 백준
- lifecycle
- Navigation
- 코틀린
- sqlite
- onLayout
- notification
- onMeasure
- Behavior
- BOJ
- HTTP
- CoordinatorLayout
- room
- recyclerview
- 알림
- LiveData
- Android
- hilt
- ViewModel
Archives
- Today
- Total
목록뷰 (1)
개발일지
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/4XB54/btq3KdWNNto/z2ac2etkDp8tOB10UQsya0/img.png)
CustomView Android에서 기본으로 제공하는 View로 UI를 구축할 수 없을 때 사용자가 직접 View를 상속받아서 CustomView를 만들 수 있다. ProgressView 전체코드 class ProgressView @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0, defStyleRes: Int = 0) : View(context, attrs, defStyleAttr, defStyleRes) { private val progressBarBackgroundPaint = Paint().apply { isAntiAlias = true style = Paint.Style.ST..
Android (안드로이드)/View
2021. 4. 29. 15:40