[Kotlin]navigation의 반환 버튼 제어
개요
FragmentContainerView
에서 관리navigation
의 화면 마이그레이션 시터미널의 되돌아오는 단추를 어떻게 제어해야 하는지 정리했습니다.
이루어지다
정식으로 적절한 처리 기록이 있다.
class MyFragment : Fragment() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
// This callback will only be called when MyFragment is at least Started.
val callback = requireActivity().onBackPressedDispatcher.addCallback(this) {
// Handle the back button event
}
// The callback can be enabled or disabled here or in the lambda
}
}
이상
FragmentContainerView
ActivityActivity
의 경우돌아가기 버튼을 눌렀을 때 일률적으로
팝백으로 썼으면 좋겠다.
navigation
내의 Activity
도 쓸 수 없습니다.각 Fragment에만 기재될 수 있습니다
onBackPressed()
.
Reference
이 문제에 관하여([Kotlin]navigation의 반환 버튼 제어), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/chiii/articles/63b161485db333텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)