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
- activity
- pandas
- 암호학
- GitHub
- 백준
- Codeforces
- architecture
- ProGuard
- androidStudio
- AWS
- android
- TEST
- livedata
- Hilt
- textfield
- Coroutine
- boj
- Gradle
- 프로그래머스
- relay
- Coroutines
- 코드포스
- MiTweet
- 쿠링
- Python
- MyVoca
- Kotlin
- 코루틴
- Compose
- Rxjava
Archives
- Today
- Total
이동식 저장소
ViewBinding을 사용할 때 layout_margin이 적용되지 않는 오류 본문
레이아웃 XML 파일
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginHorizontal="10dp"
android:layout_marginVertical="10dp"
android:orientation="vertical">
Java 파일
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityAddVocaBinding.inflate(layoutInflater)
setContentView(binding.root)
// ...
}
신기술 ``ViewBinding``을 사용하다 오류를 하나 찾아냈다. XML 파일에서 설정한 ``layout_margin``이 가로, 세로 모두 적용되지 않는 문제이다. 놀랍게도 구글링해서 답을 찾을 수 없었다. ``Fragment``에서 오류난 사람은 있었지만 ``Activity``에서 오류가 난 사람은 없었던 듯 하다.
해결책은 그냥 ``layout_margin``을 ``padding``으로 대체하면 된다. 참 쉽죠?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingHorizontal="10dp"
android:paddingVertical="10dp"
android:orientation="vertical">
'Primary > Android' 카테고리의 다른 글
Inflate()에서 매개변수 attachToParent의 의미 (1) | 2020.12.22 |
---|---|
ViewBinding 사용 시 레이아웃 크기가 wrap_content로 고정되는 문제 (0) | 2020.12.21 |
Android Studio에서 머티리얼 아이콘 쉽게 사용하기 (0) | 2020.08.27 |
Expected BEGIN_ARRAY but was STRING at line 1 column 1 path (0) | 2020.02.08 |
머티리얼 디자인 아이콘 (0) | 2020.02.05 |
Comments