Notice
Recent Posts
Recent Comments
Link
«   2025/08   »
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
more
Archives
Today
Total
관리 메뉴

Olive Study Room

[Android Studio] findViewById, 자동으로 View import 안되는 경우 본문

카테고리 없음

[Android Studio] findViewById, 자동으로 View import 안되는 경우

Olive Dev 2021. 7. 17. 18:51

예제 영상을 따라하다가 나만 자동으로 레이아웃에서 선언한 id가 엑티비티에서 안불러와져서 그냥 findViewById를 사용했는데!

알고보니 2021년부터 (안드로이드 4.1버전부터) 'kotlin-android-extensions' 라이브러리가 제거되었기 때문이라고 한다..

 

 

대체 기능으로 Viewbinding을 사용하라고 나와있지만 

build.gradle 파일에서 plugins에 'kotlin-android-extendsions'을 추가하면 사용할 수 있다!

 

 

 

 

자세한 설명은 아래 참고!

https://android-developers.googleblog.com/2020/11/the-future-of-kotlin-android-extensions.html

 

The future of Kotlin Android Extensions

Posted by David Winer, Product Manager The Android Kotlin Extensions Gradle plugin (not to be confused with Android KTX ) was release...

android-developers.googleblog.com

 

Comments