본문 바로가기
프로그래밍 놀이터/Kotlin, Coroutine

[Kotlin] findViewById shows "type inference failed..."

by 돼지왕 왕돼지 2018. 10. 6.
반응형

[Kotlin] findViewById shows "type inference failed..."


findviewbyid, Kotlin, kotlin findviewbyid, type inference failed, [Kotlin] findViewById shows


위와 같은 에러가 나는 이유는 findViewById 가 Android O 부터 Kotlin 에서 아래와 같이 정의되었기 떄문이다.

public <T extends View> T findViewById(int id) {

    ...

}


그래서 일반적인 기존 방식이 아닌 아래 방식으로 사용해야 한다.

findViewById<TextView>(R.id.textView)




반응형

댓글