FragmentStack icon indicating copy to clipboard operation
FragmentStack copied to clipboard

Demo包括我自己项目用了这框架,点击clone()会白屏

Open edcedc opened this issue 6 years ago • 1 comments

RT作者不知能不能解决

edcedc avatar Apr 10 '18 10:04 edcedc

不知道是不是内存泄漏了 stackmanager里的getlast[1] 也就是to fragment已经执行了ondestory方法 跳转后就白屏了 方法已解决: 在onBackPressed方法最后那里判断改成下面 if (to != null&&to.view!= null) { val toView = to.view if (next_in != null) { toView!!.startAnimation(next_in) } } else { closeAllFragment() context.finish() }

DamonEle avatar Dec 30 '19 03:12 DamonEle