mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-06-05 21:59:27 +02:00
fix #250, allow copying phone number to clipboard by long pressing it
Works at the View contact screen only
This commit is contained in:
@ -235,6 +235,12 @@ class ViewContactActivity : ContactActivity() {
|
|||||||
startCallIntent(phoneNumber.value)
|
startCallIntent(phoneNumber.value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setOnLongClickListener {
|
||||||
|
copyToClipboard(phoneNumber.value)
|
||||||
|
toast(R.string.value_copied_to_clipboard)
|
||||||
|
true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
contact_numbers_image.beVisible()
|
contact_numbers_image.beVisible()
|
||||||
|
Reference in New Issue
Block a user