调用 replace() 时片段的生命周期是什么?

2022-09-02 22:12:01

我有许多片段,这些片段是使用以下代码动态添加的:

private class DrawerItemClickListener implements ListView.OnItemClickListener {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        selectItem(position);
    }
}

private void selectItem(int position) {
    // update the main content by replacing fragments
    Fragment fragment = null;
    if(position == 0){
        fragment = new FirstFragment();
    }
    else if(position == 1){
        fragment = new SecondFragment();
    }
    else if(position == 2){
        fragment = new ThirdFragment();
    }

    FragmentManager fragmentManager = getSupportFragmentManager();
    fragmentManager.beginTransaction().replace(R.id.content_frame, fragment).commit();

    // update selected item and title, then close the drawer
    mDrawerList.setItemChecked(position, true);
    setTitle(mCalculatorTitles[position]);
    mDrawerLayout.closeDrawer(mDrawerList);
}

在我的一个片段中,我有一个计时器,我刚刚发现,当片段被替换时,旧片段中的计时器仍在运行。在片段生命周期的哪个阶段,我应该在哪里终止计时器?

编辑:

好吧,所以我在片段的onStop()方法中添加了一个timer.cancel(),但是当我从操作栏上的按钮加载首选项时,onStop()也会被调用。这不是预期的效果。还有其他想法吗?


答案 1

我会杀死任何计时器或异步工作onStop()

http://developer.android.com/guide/components/fragments.html#Lifecycle

引用 API 文档:


停止 片段不可见。主机活动已停止,或者片段已从活动中删除,但已添加到后退堆栈。已停止的片段仍处于活动状态(系统将保留所有状态和成员信息)。但是,它对用户不再可见,如果活动被终止,它将被杀死。

片段生命周期:

Fragment lifecycle


答案 2

计时器任务与片段生命周期无关。您可以在使用该片段完成作业时取消计时器。Fragment的onStop方法是做到这一点的好地方。

public void onStop() {
    super.onStop();
    timer.cancel();
}

推荐