개발공부/andorid

findViewById() 없이 XML 참조 하기

ssung85 2020. 11. 10. 22:04
728x90

Kotlin를 이용 하면 activity_main.xml 의 TextView 또는 ImageView 의 ID를 가져 와야 할때가 많다.

할때 마다 findViewById() 없이 xml 파일을 바로 참조 해올수 있다.

 

MainActivity.kt 의 아래 내용 작성

import kotlinx.android.synthetic.main.activity_main.*

 

 

Build.gradle(Module) 추가

apply plugin: 'kotlin-android-extensions'
728x90