对于普通(非嵌套片段),我使用以下方法
原文链接:https://www.f2er.com/javaschema/281334.html1)创建用于设置片段依赖性的依赖项(…)方法
class MyFragment extends MyFragment { void dependencies(Deps deps); }
2)在MyFragment parent的活动onAttachFragment()方法中我只提供片段的依赖关系
class MyActivity{ void onAttachFragment(Fragment f){ ((MyFragment)f).dependencies(deps); } }
对于嵌套片段,不再有onAttachFragment片段被调用.
为片段提供依赖性只是为了提供嵌套片段的依赖性,这似乎非常麻烦.那我怎么能为它提供依赖呢?