[Android] Bundle 객체 (Fragment.getArguments()) 에 Map 데이터를 담아서 넘기는 방법

By | 1월 18, 2021

처음에는 json으로 serialize 해서 넘기고 그랬었는데, 이미 편리한 메서드가 존재하고 있었다.

 

fragment.getArguments().putSerializable("testMap", testMap);

Map testMap = fragment.getArguments().getSerializable("testMap");

 

 

 

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments