Skip setting button after destroyed

This commit is contained in:
Mygod
2020-01-09 23:05:45 +08:00
parent 6af6b3ce15
commit def2f971c9

View File

@@ -168,7 +168,7 @@ class WifiApDialogFragment : AlertDialogFragment<WifiApDialogFragment.Arg, WifiA
dialogView.password_wrapper.error = if (passwordValid) null else { dialogView.password_wrapper.error = if (passwordValid) null else {
requireContext().getString(R.string.credentials_password_too_short) requireContext().getString(R.string.credentials_password_too_short)
} }
(dialog as AlertDialog).getButton(DialogInterface.BUTTON_POSITIVE).isEnabled = ssidValid && passwordValid (dialog as? AlertDialog)?.getButton(DialogInterface.BUTTON_POSITIVE)?.isEnabled = ssidValid && passwordValid
} }
override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) { } override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) { }