show some contacts details immediately, the rest just later
This commit is contained in:
parent
3f4242650b
commit
4d63dc06c3
1 changed files with 23 additions and 12 deletions
|
@ -205,7 +205,20 @@ class ViewContactActivity : ContactActivity() {
|
||||||
|
|
||||||
ContactsHelper(this).getContactSources {
|
ContactsHelper(this).getContactSources {
|
||||||
contactSources = it
|
contactSources = it
|
||||||
|
runOnUiThread {
|
||||||
|
setupContactDetails()
|
||||||
getDuplicateContacts {
|
getDuplicateContacts {
|
||||||
|
setupContactDetails()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupContactDetails() {
|
||||||
|
if (isFinishing || isDestroyed) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
setupPhoneNumbers()
|
setupPhoneNumbers()
|
||||||
setupEmails()
|
setupEmails()
|
||||||
setupAddresses()
|
setupAddresses()
|
||||||
|
@ -218,8 +231,6 @@ class ViewContactActivity : ContactActivity() {
|
||||||
setupOrganization()
|
setupOrganization()
|
||||||
updateTextColors(contact_scrollview)
|
updateTextColors(contact_scrollview)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun launchEditContact(contact: Contact) {
|
private fun launchEditContact(contact: Contact) {
|
||||||
wasEditLaunched = true
|
wasEditLaunched = true
|
||||||
|
|
Loading…
Reference in a new issue