当前位置:   article > 正文

Android拦截返回事件OnBackPressedDispatcher的处理

onbackpresseddispatcher

一、前言

以前Fragment、View里面没有返回事件,需要自己处理,目前官方提供了OnBackPressedDispatcher对事件进行拦截处理,这个类也主要是处理这个问题
注意事项:
OnBackPressedDispatcher并不是对onBackPressed()的替换,只是对它的补充,最终返回的话还是要使用onBackPressed()

二、理论概念

代码使用如下

class MyFragment : Fragment() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)

        // This callback will only be called when MyFragment is at least Started.
         requireActivity().onBackPressedDispatcher.addCallback(
            this,
            object : OnBackPressedCallback(true) {
                override fun handleOnBackPressed() {
                    Log.d("YM", "handleOnBackPressed(): name=${tag}")
                }
            })

        // The callback can be enabled or disabled here or in the lambda
    }
    ...
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

OnBackPressedDispatcher通过定义的先后顺序来进行触发。他们触发的先后顺序为倒叙方式。例如您按顺序添加了三个名为 onetwothree 的回调,则它们的调用顺序分别为 threetwoone

回调遵循责任链模式。责任链中的每个回调仅在前面的回调处于未启用状态时调用。这意味着,在前面的示例中,仅当 three 回调处于未启用状态时,系统才会调用 two 回调。仅当 two 回调处于未启用状态时,系统才会调用 one 回调,以此类推。

回调状态可以通过OnBackPressedDispatcher::setEnabled(boolean enabled)动态启用。

需要注意的是官方推荐使用OnBackPressedCallback来替换Activity::onBackPressed()。但是有这么一个情况:
因为OnBackPressedDispatcher最终是在Lifecycle.Event.ON_START事件收到后进行注册的。表现在生命周期中为onStart()函数。但是据Android10.0版本的手机测试,其Activity::onStart()执行会在Fragment::onStart()之后。因此,在OnBackPressedDispatcher栈中的顺序中Activity会为最后。所以这样在ActivityFragment嵌套使用的时候,会只能收到Activity的返回拦截事件。除非Fragment 的添加是在Activity::onStart()函数之后进行添加的。但是在Android8.0测试则是先执行Activity,后执行Fragment。这样的话,程序就很正常了

三、代码演示

这里定义一个页面来演示下该功能,每次点击返回键就返回移除该Fragment。整体页面如下:
在这里插入图片描述

这个页面由两个Fragment组成。代码如下:

fragment_call_back.xml

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".CallBackFragment">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="@string/hello_blank_fragment" />

</FrameLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

CallBackFragment.kt

package com.hello.world

import android.os.Bundle
import android.util.Log
import androidx.fragment.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.activity.OnBackPressedCallback

class CallBackFragment : Fragment() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        requireActivity().onBackPressedDispatcher.addCallback(
            this,
            object : OnBackPressedCallback(true) {
                override fun handleOnBackPressed() {
                    Log.d("YM", "handleOnBackPressed(): name=${tag}")
                    closeFragment()
                }
            })
    }

    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        return inflater.inflate(R.layout.fragment_call_back, container, false)
    }
    private fun closeFragment() = requireActivity().supportFragmentManager.beginTransaction()
        .remove(this).commit()
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

activity_call_back.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".CallBackActivity">

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/call_back_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:tag="fragment1"
        android:name="com.hello.world.CallBackFragment"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toTopOf="@+id/call_back_container_2"/>

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/call_back_container_2"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:tag="fragment2"
        android:name="com.hello.world.CallBackFragment"
        app:layout_constraintTop_toBottomOf="@+id/call_back_container"
        app:layout_constraintBottom_toBottomOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27

CallBackActivity.kt

class CallBackActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_call_back)
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

四、实际场景演示

假设有一个场景,一个文件列表管理功能,点击列表的条目会显示该条目中的文件列表,按返回键会返回到父文件夹到目录,如果为顶层目录则直接返回到上一个页面。具体实现逻辑一个Fragment,该Fragment可以嵌套进其他页面。所以所有返回逻辑都在Fragment中处理。关键代码如下:

class FileManagerToolsFragment : BaseFragment() {
    private val backPressedCallback: OnBackPressedCallback by lazy {
        object : OnBackPressedCallback(!viewModel.isRootFile()) {
            override fun handleOnBackPressed() {
                lifecycleScope.launch(Dispatchers.IO) {
                    if (!viewModel.isRootFile()) {
                        viewModel.backParent()
                    }
                    isEnabled = !viewModel.isRootFile()
                }
            }
        }
    }
	override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        // This callback will only be called when Fragment is at least Started.
        activity?.onBackPressedDispatcher?.addCallback(
            this, backPressedCallback
        )
    }
    private fun initRecyclerView() {
        adapter.onItemClickListener = { fileEntity ->
            if (fileEntity.isDirectory) {
                lifecycleScope.launch(Dispatchers.IO) {
                    viewModel.loadFileList(fileEntity.path)
                    backPressedCallback.isEnabled = !viewModel.isRootFile()
                }
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

五、参考链接

  1. 提供自定义返回导航
    https://developer.android.com/guide/navigation/navigation-custom-back?hl=zh-cn

  2. Android | Jetpack 处理回退事件的新姿势 —— OnBackPressedDispatcher
    https://www.jianshu.com/p/75bc5108628f

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/531646
推荐阅读
相关标签
  

闽ICP备14008679号