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
- 백준
- MyVoca
- boj
- 프로그래머스
- pandas
- Kotlin
- 쿠링
- AWS
- 암호학
- Python
- Coroutines
- 코루틴
- activity
- GitHub
- Rxjava
- livedata
- Hilt
- Compose
- 코드포스
- architecture
- Gradle
- TEST
- relay
- Codeforces
- ProGuard
- MiTweet
- androidStudio
- Coroutine
- android
- textfield
Archives
- Today
- Total
이동식 저장소
Fragment에서 View의 크기를 알고 싶을 때 본문
한줄요약: ``onCreateView()``에서 ``binding.root.post``를 호출하고, 그 안에서 ``measuredHeight``/``measuredWidth``에 접근할 수 있다.
private var _binding: FragmentTestBinding? = null
private val binding
get() = _binding!!
override fun onCreateView() {
_binding = FragmentTestBinding.inflate(...)
binding.root.post {
val size = root.measuredHeight
// ...
}
}
'Primary > Android' 카테고리의 다른 글
Android에서 Vector Drawable 추가하기 (0) | 2021.06.29 |
---|---|
[Android] WorkManager 정리 (0) | 2021.05.28 |
Widget에서 Room 데이터베이스에 접근하는 방법 (0) | 2021.05.06 |
[Hilt] 2. Dependency Injection with Hilt (5) | 2021.04.29 |
[Hilt] 1. 의존성 주입이란? (1) | 2021.04.29 |
Comments