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
- Android
- BOJ
- AppBarLayout
- room
- hilt
- notification
- onLayout
- HTTP
- 코틀린
- CustomView
- Algorithm
- onMeasure
- recyclerview
- Coroutine
- sqlite
- LiveData
- 백준
- 안드로이드
- kotlin
- 알림
- CoordinatorLayout
- Navigation
- DataBinding
- CollapsingToolbarLayout
- activity
- lifecycle
- View
- ViewModel
- Behavior
- 알고리즘
Archives
- Today
- Total
목록View (9)
개발일지
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cI1D0A/btq3JeO4mSV/V8R7Hr5oZk5xBxu2Jso5A1/img.png)
Android는 View와 ViewGroup을 통해 UI를 구축하여 사용자와 상호작용할 수 있다. 기본적으로 Button, TextView 등의 View와 ConstraintLayout, LinearLayout 등의 ViewGroup을 제공하기 때문에 쉽게 앱을 제작할 수 있다. 하지만 기본적으로 제공하는 View와 ViewGroup으로 원하는 UI를 구축할 수 없는 경우가 있으며, 이런 경우 View와 ViewGroup을 상속받아 직접 구현할 수 있고 기존의 정의된 View를 상속받아 기능을 확장할 수 있다. View Method View에서 제공하는 Method를 재정의하면서 View를 Custom화 할 수 있다. 구분 함수 설명 생성 constructor(Context) 코드에서 View를 생성할 ..
Android (안드로이드)/View
2021. 4. 29. 15:04