강의

멘토링

커뮤니티

Inflearn Community Q&A

kimino1998's profile image
kimino1998

asked

Yoon Jae-seong's Java-based Android App Development Part 1 - UI Programming

Lesson 48 RecyclerView

RecyclerView48강 질문입니다.

Written on

·

257

0

어뎁터 생성 시 MainActivity가 아닌, 일반 자바클래스에서 생성을 하면

RowBinding rowBinding = RowBinding.inflate(getLayoutInflater());

의 getLayoutInflater()가 호출이 안되는지 알고 싶습니다.

 

MainActivity내에선 호출이 잘 됩니다. 하지만

자바클래스로 따로 어뎁터를 만들었을 때 호출이 안되서 이유를 알고 싶습니다.

androidjava

Answer 1

0

softcampus님의 프로필 이미지
softcampus
Instructor

getLayoutInflater 메서드는 Activity 클래스에서 제공하는 메서드입니다.

kimino1998's profile image
kimino1998

asked

Ask a question