Skip to content

Instantly share code, notes, and snippets.

@5AbhishekSaxena
Created December 14, 2021 14:25
Show Gist options
  • Save 5AbhishekSaxena/1e55a4bed7619bb811303376cbcfbdde to your computer and use it in GitHub Desktop.
Save 5AbhishekSaxena/1e55a4bed7619bb811303376cbcfbdde to your computer and use it in GitHub Desktop.
Sms sharing intent type
class SmsSharingIntent(
private val sms: Sms,
chooserTitle: String = "Please select app to send SMS with",
) : SharingIntent {
override val intentChooserTitle: String = chooserTitle
override fun prepareIntent(): Intent = Intent().apply {
action = Intent.ACTION_VIEW
data = Uri.parse("sms: ${sms.phoneNumber}")
putExtra("sms_body", sms.body)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment