OnActivityResult method is deprecated, what is the alternative?

前端 未结 5 538
情话喂你
情话喂你 2021-01-01 10:33

Recently I faced the onActivtyResult is deprecated. what should we do for handle it?

any alternative introduced for that?

5条回答
  •  离开以前
    2021-01-01 10:52

    onActivityResult, startActivityForResult, requestPermissions, and onRequestPermissionsResult are deprecated on androidx.fragment from 1.3.0-alpha04, not on android.app.Activity.
    Instead, you can use Activity Result APIs with registerForActivityResult.

提交回复
热议问题