当我导航回片段时,片段的内容消失了

时间:2019-04-15 13:50:53

标签: android android-fragments kotlin navigation android-viewpager

我正在使用Single Activity应用程序中的Navigation组件进行导航,但是我有一个片段的奇怪行为。只是为了解释使用图像。

我有一个ViewPager片段。 ViewPager包含另外两个片段,因此看起来:

enter image description here

Bird -第一个片段, Test -第二个片段。底部元素是底部导航,它不是片段的一部分。片段在工具栏底部导航之间。

这个包含ViewPager的片段不是起始片段,它位于堆栈中间。

因此,当用户单击底部菜单项时,此导航代码会运行(来自 主要活动 ):

 bottom_navigation.apply {
            itemIconTintList = null
            setOnNavigationItemSelectedListener { item ->
                when (item.itemId) {
                    R.id.about_bottom -> {
                        findNavController(R.id.host).navigate(R.id.toAboutUs)
                    }
                    R.id.error_bottom -> {
                        findNavController(R.id.host).navigate(R.id.toMessage)
                    }
                }
                true
            }
        }

其中toMessage / toAboutUs是另一个片段的全局点。

那是什么问题。当用户单击底部菜单项时,一切正常。但是当他按下“返回”按钮时,片段中的内容就消失了。只是看到:

enter image description here

如果这样的话,我什至无法提出原因。我知道ViewPager上的“主要”片段和片段不是正在重新创建,那么为什么它们会丢失内容?

我没有在任何地方重写后退按钮的行为。我只使用主机碎片的app:defaultNavHost="true"


数据传输方式: 当用户单击按钮以使用ViewPager打开Fragment时,从数据库加载数据并将其保存到ViewModel,只有这样,用户才会被传输到该Fragment。创建两个子片段时,它们将从ViewModel加载数据。而且我在清除ViewModel的代码中没有位置,因此当用户按回它时,我的ViewModel 100%包含某些内容。但是不显示。

UPD:花了一些时间,我意识到当我向后导航时并没有重新创建两个“子”片段,而是重新创建了Main Fragment。我认为问题出在这里,但仍然不知道确切的位置。

我需要您的帮助,以了解发生了什么事。


更新:提供片段创建的一些代码。 BaseCompatFragment 扩展了 Fragment

MainFragment (另外两个片段的容器):

class QuestionFragment : BaseCompatFragment() {

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        return inflater.inflate(R.layout.fragment_question, container, false)
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        pager.adapter = QuestionViewPagerAdapter(fragmentManager!!)
        activity?.toolbar_title?.text = getString(R.string.title_question,1)

        layout_tab.apply {
            setupWithViewPager(pager)
            tabIconTint = null
            getTabAt(0)?.setIcon(R.drawable.ic_type_bird)
            getTabAt(1)?.setIcon(R.drawable.ic_hints)
        }
    }
}

QuestionViewPagerAdapter

    class QuestionViewPagerAdapter(fragmentManager: FragmentManager) : FragmentStatePagerAdapter(fragmentManager) {

        override fun getItem(position: Int): BaseCompatFragment {
            when (position) {
                0 -> return HintsFragment()
                1 -> return BaseInfoFragment()
            }
            return HintsFragment()
        }

        override fun getCount(): Int {
            return 2
        }
    }

HintsFragment (鸟)

class HintsFragment : BaseCompatFragment(), HintsFragmentContract.View {

    @Inject
    lateinit var presenter: HintsFragmentPresenter

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        return inflater.inflate(R.layout.fragment_hints, container, false)
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        LibApp.get().injector.inject(this)
        presenter.attach(this)

        val animalWithHints =
            ViewModelProviders.of(activity!!).get(AnimalViewModel::class.java).getData().value

        val adapter = HintsAdapter(callback = { id ->
            //Some code will be here soon
        })
        //Do smth with content
        adapter.hintsList = animalWithHints?.animal?.hints?.split("///") as ArrayList<String>
        adapter.hintsStorage = animalWithHints.hints?.get(0) ?: Hints()

        recycler_hints.layoutManager = verticalManager(context)
        recycler_hints.adapter = adapter
    }
}

BaseInfoFragment (测试)

class BaseInfoFragment : BaseCompatFragment() {

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        return inflater.inflate(R.layout.fragment_base_info, container, false)
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        val animalWithHints =
            ViewModelProviders.of(activity!!).get(AnimalViewModel::class.java).getData().value

        //A lot of logic to hide/show content, don't think it can be intresting

        val isBaseInfoOpen = animalWithHints?.hints?.get(0)?.baseInfoOpened == 1
        setBlockLayoutState(!isBaseInfoOpen)

        if (isBaseInfoOpen) {
            openContent(animalWithHints)
        } else {
            text_base_info.text = getString(R.string.base_info_price, 100)
            btn_base_info_positive.setOnClickListener {
                if (btn_base_info_negative.visibility == View.GONE) {
                    btn_base_info_negative.visibility = View.VISIBLE
                    text_base_info.text = getString(R.string.default_doubts)
                } else {
                    openContent(animalWithHints)
                }
            }

            btn_base_info_negative.setOnClickListener {
                it.visibility = View.GONE
                text_base_info.text = getString(R.string.base_info_price, 100)
            }
        }
    }

    private fun getRareIcon(rare: Int, context: Context): Drawable {
        return when (rare) {
            1 -> ContextCompat.getDrawable(context, R.drawable.ic_rare_fine)!!
            2 -> ContextCompat.getDrawable(context, R.drawable.ic_rare_medium)!!
            3 -> ContextCompat.getDrawable(context, R.drawable.ic_rare_bad)!!
            else -> ContextCompat.getDrawable(context, R.drawable.ic_warning)!!
        }
    }

    private fun getRareText(rare: Int): String {
        return when (rare) {
            1 -> getString(R.string.base_info_rare_1)
            2 -> getString(R.string.base_info_rare_2)
            3 -> getString(R.string.base_info_rare_3)
            else -> getString(R.string.base_info_rare_4)
        }
    }

    private fun setBlockLayoutState(state: Boolean) {
        base_info_closer.visibility = when {
            state -> View.VISIBLE
            else -> View.GONE
        }
        base_info_content.visibility = when {
            state -> View.GONE
            else -> View.VISIBLE
        }
    }

    private fun openContent(animalWithHints: AnimalWithHints?) {
        (img_closed_base_info.drawable as Animatable).start()
        rare_img.setImageDrawable(getRareIcon(animalWithHints?.animal?.rare ?: 0, activity!!))
        rare_text.text = getRareText(animalWithHints?.animal?.rare ?: 0)
        setBlockLayoutState(false)
    }
}

2 个答案:

答案 0 :(得分:1)

我认为,问题出在这里:QuestionViewPagerAdapter(fragmentManager!!) 直接在活动上添加片段时,需要使用getFragmentManager() / getSupportFragmentManager()。但是,当您需要在另一个片段上添加片段时,则需要使用getChildFragmentManager()

来自getSupportFragmentManager() documentation

  

返回FragmentManager以与与此活动相关联的片段进行交互。

因此,这就是您的鸟和测试片段在其父片段出现时却没有重新创建的原因。

并且来自getChildFragmentManager() doc

  

返回一个私有的FragmentManager,用于在此Fragment中放置和管理Fragment。

这应该可以解决问题。希望能帮助到你。

答案 1 :(得分:0)

在MainFragment的onCreateView上,尝试将if(!iwego())返回;某处。我之前遇到过同样的问题,但是您的代码与我的有所不同。如果(!iwego())返回;。