yeone

Results 1 comments of yeone

不知道是不是内存泄漏了 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() }