Merge pull request #206 from Aga-C/reset-dialpad-search-tap

Added resetting dialpad on dialing through tapping searched items
This commit is contained in:
Naveen Singh
2024-05-27 05:18:52 -04:00
committed by GitHub

View File

@@ -313,6 +313,9 @@ class DialpadActivity : SimpleActivity() {
} else {
startCallIntent(contact.getPrimaryNumber() ?: return@ContactsAdapter)
}
Handler().postDelayed({
binding.dialpadInput.setText("")
}, 1000)
}.apply {
binding.dialpadList.adapter = this
}