我正在PageViewer
使用FragmentPagerAdapter
.
片段子使用 Activity 引用,onViewCreated(..){}
其中获取自onAttach(Activity activity){}
private ScreenSlideActivity parentActivity = null;
@Override public void onAttach(Activity activity) {
super.onAttach(activity);
parentActivity = (SlideActivity) parentActivity;
}
现在我试图在 onViewCreated() 中使用这个 parentActivity 对象,它返回我为空。
如果我在保持 ViewPager 行为的同时遗漏任何东西,有什么建议吗?