fix #28, make the contacts beginning with the search string appear first
This commit is contained in:
parent
2b636f7240
commit
a1a2573047
|
@ -163,6 +163,11 @@ abstract class MyViewPagerFragment(context: Context, attributeSet: AttributeSet)
|
||||||
it.phoneNumbers.any { it.value.contains(text, true) } ||
|
it.phoneNumbers.any { it.value.contains(text, true) } ||
|
||||||
it.emails.any { it.value.contains(text, true) }
|
it.emails.any { it.value.contains(text, true) }
|
||||||
} as ArrayList
|
} as ArrayList
|
||||||
|
|
||||||
|
Contact.sorting = config.sorting
|
||||||
|
filtered.sort()
|
||||||
|
filtered.sortBy { !it.getFullName(startNameWithSurname).startsWith(text, true) }
|
||||||
|
|
||||||
updateItems(filtered)
|
updateItems(filtered)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue