A:ViewModelProviders로 사용합니다.of()가 사용되지 않습니다. ViewModel의 객체를 어떻게 만들어야 합니까?대답: ViewModelProviders로서of()가 사용되지 않습니다. ViewModel의 객체를 어떻게 만들어야 합니까?

1599 단어

answer re: As ViewModelProviders.of() is deprecated, how should I create object of ViewModel?
19년 10월 21일
141

바꾸기만 하면 됩니다.
이것은 다음과 같습니다.
boardViewModel = ViewModelProviders.of(this).get(BoardViewModel::class.java)
이게 생겼어요.
boardViewModel = ViewModelProvider(this).get(BoardViewModel::class.java)
Open Full Answer

좋은 웹페이지 즐겨찾기