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 | 31 |
Tags
- View
- notification
- lifecycle
- DataBinding
- hilt
- Navigation
- CoordinatorLayout
- Algorithm
- onLayout
- HTTP
- room
- activity
- LiveData
- Behavior
- 알림
- sqlite
- 코틀린
- CustomView
- onMeasure
- 안드로이드
- BOJ
- AppBarLayout
- CollapsingToolbarLayout
- recyclerview
- kotlin
- ViewModel
- 백준
- Coroutine
- 알고리즘
- Android
Archives
- Today
- Total
목록constraint_referenced_ids (1)
개발일지
삽질 - Android ConstraintLayout Group
Android에서 ConstraintLayout의 Group 기능을 사용하면 쓸데없는 ViewGroup을 줄일 수 있다. ex) 한번에 여러 View의 Visible를 관리할 때 새로운 ViewGroup을 만들어서 ViewGroup하나로 관리할 수 있지만 쓸데없는 ViewGroup이 늘어나며 성능에 영향을 줄 수 있다. 하지만 ConstraintLayout의 Group 기능을 사용할 경우 Group에 Tag 또는 Id로 View를 매핑하여 쉽게 관리할 수 있다. Group기능을 제대로 사용하기 위해선 매핑되는 View들의 Id가 정의되어야 한다. id를 정의하지 않은 View는 Group의 기능을 제대로 사용할 수 없다.
삽질
2021. 9. 28. 16:33