- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
查看 Fragment 的生命周期,我不确定这里可能发生的情况。当 Fragment 停止 Activity 时,有两种可能的方法。
两种选择中的哪一种是在什么情况下完成的?是什么决定了他们中的哪一个?如果一个 fragment 被添加到后台堆栈,然后被删除/替换,为什么不把它扔掉呢?为什么要保留它?
编辑:我恍然大悟,难道这取决于 fragment 是否保留?
最佳答案
好像全看 fragment 有没有保留。当fragment被保留,然后在onDestroyView之后onCreateView。
当 fragment 被保留(即 setRetainInstance(true))时,旋转设备时的日志如下所示:
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onAttach
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onCreate
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onCreateView
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onActivityCreated
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onStart
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onResume
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onPause
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onStop
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onDestroyView
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onDetach
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onAttach
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onCreateView
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onActivityCreated
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onStart
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onResume
但是不保留的时候是这样的:
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onAttach
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onCreate
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onCreateView
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onActivityCreated
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onStart
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onResume
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onPause
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onStop
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onDestroyView
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onDestroy
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onDetach
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onAttach
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onCreate
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onCreateView
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onActivityCreated
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onStart
com.example.FragmentLifecycleTestApp W/MainFragment﹕ onResume
关于android - 什么时候会调用Fragment的onDestroyView,但是不会销毁呢?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23593965/
应客户的要求,我尝试使用 Android 的 FragmentManager/FragmentTransaction 框架和 setCustomAnimations() 方法实现过渡动画。 一切正常,
当您创建一个 ListView 时,我们使用 onCreateView 方法。当 View (项目)被销毁时,是否有任何方法被调用? 我想销毁 moPub 广告 View 。 谢谢。 最佳答案 Lis
我在这里处理奇怪的 fragment 生命周期行为。 我有一个托管两个 fragment 的 Activity :CityFragment - 显示城市列表和 WeatherFragment - 显示
我的应用程序有 2 个选项卡,运行起来非常棒。 但是今天我试图扩展我的标签栏并添加了第三个标签。 当我点击第三个选项卡时,它会破坏第一个选项卡 fragment ,并在第一个选项卡 fragment
我为我的按钮设置监听器: View onCreateView(...) { ... btn.setOnClickListener(new View.OnClickListener(
我的 APP 确实有多个 fragment 和 Activity ,这些 Activity 中的大多数都有不同的 fragment ,这是为了让我的组件更容易重用。当我将其他 Activity 加载到
我有一个 FrameLayout 容器,当从抽屉导航中选择一个项目时,我使用 replace 方法在其中放置一个 fragment 。 getSupportFragmentManager().begi
想象一下这个场景:我在 Pager 中有一个 Fragment。我尝试切换到其他应用程序,以便拥有我的寻呼机(和我的 fragment )的 Activity 最终将停止并暂时销毁。 所以,当我回到我
我遇到一个问题,在 onDestroyView 之后调用 ListFragment.onListItemClick。我在现场收到很多错误报告(大约 1000 个活跃用户每天 10-20 个),但我发现
当您导航到不同的 fragment 时,立即调用 onDestroyView() 这是正常行为吗? 我调用以下方法进行导航: findNavController().navigate(R.id.act
我有一个主要的Activity,其中包含一个带有4个选项卡的ViewPager。每个选项卡内部都有一个fragment。我在主Activity 上实现了ActionBar.TabListener。在
我正在使用 Mosby Android 应用程序中的模型- View -Presenter 库。在一个特定的 View 中,我正在使用 Bottom Navigation用 Design Suppor
我有一个 ListFragment,我想定期更新它。更新过程本身非常复杂,可能需要一些时间。这就是为什么我创建了一个线程,在上一次更新完成后 5 秒执行新的更新。然后我创建一个处理程序来更新列表,同时
Android 文档讨论了在某些情况下无法调用 onStop 和 onDestroy 的内容,但我没有发现任何与 fragment 相同的内容。 onPause、onStop、onDestroyVie
Android fragment 生命周期表明,当一个 fragment 被添加到 backstack 然后被移除/替换时,onDestroyView() 被调用,稍后,当 fragment 从 ba
我知道将 fragment 事务添加到 backstack然后从那个 fragment 移动到另一个 fragment ,reference of the previous fragment's vi
我在我的应用程序中使用实时数据进行所有网络调用和响应处理。 在其中一种情况下,我的回收者 View 正在其 View 持有者的 onBind 中加载一些数据,并且响应正在更新 UI。为此,我必须向观察
这个问题在这里已经有了答案: How to use Fragments in Android (4 个答案) 关闭 1 年前。 我的应用程序中有一个名为 HomeFragment 的 fragmen
这个问题在这里已经有了答案: How to use Fragments in Android (4 个答案) 关闭 1 年前。 我的应用程序中有一个名为 HomeFragment 的 fragmen
我是一名优秀的程序员,十分优秀!