I\'d like to make a dialog fragment that asks \"Are you sure?\" with a \"yes/no\" reply.
dialog fragment
I\'ve looked at the documentation and it\'s really verbose, go
For those coding with Kotlin and Anko, you can now do dialogs in 4 lines of code:
alert("Order", "Do you want to order this item?") { positiveButton("Yes") { processAnOrder() } negativeButton("No") { } }.show()