片段未在后台堆栈中注册

时间:2021-01-03 14:24:09

标签: android fragmenttransaction fragment-backstack

我有以下方法

// Change fragment extension function to handle navigation easily
fun changeFragment(fragmentManager: FragmentManager?, @IdRes containerId: Int, fragment: Fragment?, addToBackStack: Boolean = false) {
    if (fragmentManager == null || fragment == null) return
    val fragmentTransaction = fragmentManager.beginTransaction()
    if (addToBackStack) fragmentTransaction.addToBackStack(null)
    fragmentTransaction.replace(containerId, fragment, fragment::class.java.simpleName).commit()
}

我在我的一个片段中使用它 -


class InspectionFragment : Fragment(R.layout.fragment_inspection) {

 override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        inspectionAdapter = InspectionAdapter { inspection ->
            changeFragment(
                parentFragmentManager, R.id.fragment_inspection_frame_layout,
                InspectionDetailsFragment.newInstance(inspection), true
            )
        }
  }
}



class InspectionDetailsFragment : Fragment() {

    companion object {
        fun newInstance(inspection: Inspection): InspectionDetailsFragment {
            val inspectionDetailsFragment = InspectionDetailsFragment()
            val bundle = Bundle()
            bundle.putParcelable(GeneralConstants.INSPECTION, inspection)
            inspectionDetailsFragment.arguments = bundle
            return inspectionDetailsFragment
        }
    }
}

问题是,当我将 'InspectionDetailsFragment' 层的一个顶部实例化另一个片段并按回时,它会直接返回到 'InspectionFragment' 父级。

我不明白为什么会这样。

有人有想法吗?

1 个答案:

答案 0 :(得分:1)

当您调用 changeFragment 函数时,您将 true 作为最后一个参数传递:

changeFragment(
            parentFragmentManager, R.id.fragment_inspection_frame_layout,
            InspectionDetailsFragment.newInstance(inspection), true
        )

在changeFragment函数中:

if (addToBackStack) fragmentTransaction.addToBackStack(null)

它不会被添加到 backStack。我认为您应该将 String 值作为要使用的 backStack 的名称传递,而不是 null。

我不是 100% 确定这一点。您可以从此处阅读有关片段交易的更多信息:https://developer.android.com/guide/fragments/transactions