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 |
Tags
- table
- Express
- 보조정렬
- R
- 공정능력
- hadoop
- Java
- Spring
- Sqoop
- IntelliJ
- GIT
- xPlatform
- Eclipse
- SSL
- es6
- SPC
- mybatis
- tomcat
- MSSQL
- SQL
- window
- JavaScript
- mapreduce
- vaadin
- Android
- react
- Kotlin
- plugin
- Python
- NPM
Archives
- Today
- Total
DBILITY
android WindowInsets Insets 본문
반응형
View Inset은 UI 요소가 화면의 가장자리와 겹치는 부분을 조정하는 데 사용되는 개념.
주로 시스템 UI(예: 상태 표시줄, 내비게이션 바)와 앱 콘텐츠 간의 겹침을 관리하기 위해 사용
WindowInsets은 안드로이드에서 제공하는 클래스이며, 뷰의 네 모서리에서의 여백을 정의다.
이 클래스는 상태 표시줄, 내비게이션 바, 키보드 등 다양한 시스템 UI 요소에 대한 정보를 포함한다.
ViewCompat.setOnApplyWindowInsetsListener(binding.getRoot(), (v, insets) -> {
Insets systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars());
v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom);
return insets;
});
위는 WindowInset이 적용될때 Activity의 최상위 View에 System Bar ( Status/Navigation bar 등 ) inset으로 padding을 적용하여 겹치지 않게 하는 것이다.
EdgeToEdge로 전체화면을 설정하게 되면 SystemBar 아래(뒤)까지 View화면이 표시되게 되는데 이때 SystemBar이벤트와 View이벤트 발생이 겹치게 될 수 있으니 SystemBar가 차지하는 영역만큼 View에 Padding을 넣는다고 이해하면 된다.
https://developer.android.com/develop/ui/views/layout/immersive?hl=ko#java
반응형
'android' 카테고리의 다른 글
android Missing required view with ID (0) | 2024.11.21 |
---|---|
Caused by: org.gradle.api.internal.artifacts.ivyservice.TypedResolveException: Could not resolve all files for configuration ':app:debugCompileClasspath'. (0) | 2024.11.13 |
theme (0) | 2024.05.04 |
android avd localhost (0) | 2024.05.01 |
AVD network speed (0) | 2024.04.15 |
Comments