傳遞
Bundle bundle = new Bundle();
bundle.putSerializable("key", StaticData.mUserInfoList);
participantsDialogFragment.setArguments(bundle);
// 獲取集合方式1 Serializable
?? ? ? Bundle bundle = getArguments();
?? ? ? if (bundle != null) {
?? ? ? ? ? mUserInfoList = (ArrayList) bundle.getSerializable("key");
?? ? ? }