Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从片段返回到以前的活动?我不能在片段中覆盖这个函数或者有其他方法,帮助!
@Override public void onBackPressed() { onBackPressed(); }
在您的代码中的某处,您可能有一个FragmentTransaction您正在调用add()或显示片段的replace()位置。show()在 display 方法和 之间commit(),如果您调用addToBackStack(),则操作将添加到返回堆栈,因此当您按下返回按钮时,它会反转您的片段事务。
FragmentTransaction
add()
replace()
show()
commit()
addToBackStack()