dewildte
04/21/2021, 6:43 PMBackHandler?Ian Lake
04/21/2021, 6:49 PMBackHandler is precisely for handling the back button in a composable, yesdewildte
04/21/2021, 6:51 PMsuper.onBackPressed() it won’t work correct?dewildte
04/21/2021, 6:53 PMdewildte
04/21/2021, 6:53 PMIan Lake
04/21/2021, 6:57 PMOnBackPressedDispatcher will occur if you don't call super.onBackPressed()Ian Lake
04/21/2021, 6:58 PMonBackPressed() at all - you should only be using the OnBackPressedDispatcher APIs and those built on top of itIan Lake
04/21/2021, 6:58 PMdewildte
04/21/2021, 6:58 PMdewildte
04/21/2021, 6:59 PMIan Lake
04/21/2021, 7:05 PMPopupWindow or android.app.Dialog will steal the back button before your activity (and its OnBackPressedDispatcher) receives the key eventIan Lake
04/21/2021, 7:08 PMdewildte
04/21/2021, 7:11 PM