Searched refs:dialogState (Results 1 – 4 of 4) sorted by relevance
52 val dialogState: DialogState = DialogState.ACTIVE,84 uiState = uiState.copy(dialogState = DialogState.COMPLETE)100 uiState = uiState.copy(dialogState = DialogState.COMPLETE)168 uiState = uiState.copy(dialogState = DialogState.COMPLETE)193 uiState = uiState.copy(dialogState = DialogState.COMPLETE)214 uiState.copy(dialogState = DialogState.COMPLETE)347 uiState = uiState.copy(dialogState = DialogState.CANCELED_FOR_SETTINGS)384 uiState = uiState.copy(dialogState = DialogState.COMPLETE)
160 LaunchedEffect(viewModel.uiState.dialogState) {161 handleDialogState(viewModel.uiState.dialogState)200 private fun handleDialogState(dialogState: DialogState) {201 if (dialogState == DialogState.COMPLETE) {204 } else if (dialogState == DialogState.CANCELED_FOR_SETTINGS) {
502 Bundle dialogState = savedInstanceState.getBundle(SAVED_DIALOG_STATE_TAG); in onActivityCreated() local503 if (dialogState != null) { in onActivityCreated()504 mDialog.onRestoreInstanceState(dialogState); in onActivityCreated()522 Bundle dialogState = mDialog.onSaveInstanceState(); in onSaveInstanceState() local523 if (dialogState != null) { in onSaveInstanceState()524 outState.putBundle(SAVED_DIALOG_STATE_TAG, dialogState); in onSaveInstanceState()
1897 Bundle dialogState = b.getBundle(savedDialogKeyFor(dialogId)); in restoreManagedDialogs() local1898 if (dialogState != null) { in restoreManagedDialogs()1903 md.mDialog = createDialog(dialogId, dialogState, md.mArgs); in restoreManagedDialogs()1907 md.mDialog.onRestoreInstanceState(dialogState); in restoreManagedDialogs()2420 Bundle dialogState = new Bundle(); in saveManagedDialogs() local2429 dialogState.putBundle(savedDialogKeyFor(key), md.mDialog.onSaveInstanceState()); in saveManagedDialogs()2431 dialogState.putBundle(savedDialogArgsKeyFor(key), md.mArgs); in saveManagedDialogs()2435 dialogState.putIntArray(SAVED_DIALOG_IDS_KEY, ids); in saveManagedDialogs()2436 outState.putBundle(SAVED_DIALOGS_TAG, dialogState); in saveManagedDialogs()