Home > Net >  How open external app from Jetpack Compose?
How open external app from Jetpack Compose?

Time:01-29

I want open an external app such as mailer app (with "to" and "subject" by default) from a jetpack compose button or image button. In layout xml I know, but with this new Jetpack Compose I don't. Help me?

CodePudding user response:

    val intent = Intent(Intent.ACTION_SENDTO)
    intent.setData(Uri.parse("mailto:")) // only email apps should handle this
    intent.putExtra(Intent.EXTRA_EMAIL, addresses)
    intent.putExtra(Intent.EXTRA_SUBJECT, subject)
    val context = LocalContext.current    
    Button(onClick = {
    startActivity(context, intent, null) }
    ) {
        Text("BUTTON")
    }
  •  Tags:  
  • Related