show the Cancel button at selecting a single contact
This commit is contained in:
parent
5207abb620
commit
698ea25243
1 changed files with 7 additions and 7 deletions
|
|
@ -39,14 +39,14 @@ class SelectContactsDialog(val activity: SimpleActivity, initialContacts: ArrayL
|
||||||
}
|
}
|
||||||
|
|
||||||
val builder = AlertDialog.Builder(activity)
|
val builder = AlertDialog.Builder(activity)
|
||||||
if (allowSelectMultiple) {
|
if (allowSelectMultiple) {
|
||||||
builder.setPositiveButton(R.string.ok) { dialog, which -> dialogConfirmed() }
|
builder.setPositiveButton(R.string.ok) { dialog, which -> dialogConfirmed() }
|
||||||
builder.setNegativeButton(R.string.cancel, null)
|
}
|
||||||
}
|
builder.setNegativeButton(R.string.cancel, null)
|
||||||
|
|
||||||
builder.create().apply {
|
builder.create().apply {
|
||||||
activity.setupDialogStuff(view, this)
|
activity.setupDialogStuff(view, this)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun dialogConfirmed() {
|
private fun dialogConfirmed() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue