bryan
09/04/2018, 6:42 PMprivate var instructionsView: DialogInterface? = null
private fun showInstructionView() {
instructionsView?.dismiss()
instructionsView =
context.alert {
customView {
include<View>(R.layout.instruction_view)
}
onCancelled { App.unwindToMainMenu() }
}.show()
Is there any way to animate this so it fades into/out of view?miha-x64
09/04/2018, 9:11 PMbryan
09/05/2018, 5:21 PMAlertDialog
, I have a DialogInterface
louiscad
09/05/2018, 8:12 PMalert { ... }
should return an AlertDialog
bryan
09/05/2018, 8:15 PMbryan
09/05/2018, 8:15 PMAlertBuilder<DialogInterface>
louiscad
09/05/2018, 8:36 PMbryan
09/05/2018, 8:37 PM