Issue
I want to redirect the user to another activity that opens a internet url. On button click.
Here is my code so far
Button(onClick = {
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"))
// Here is some code that starts the activity
}) {
Text(text="APPLY HACK")
}
Solution
You can use something like:
val intent = Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"))
val context = LocalContext.current
Button(onClick = {
startActivity(context, intent, null) }
) {
Text("BUTTON")
}
Answered By – Gabriele Mariotti
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under CC BY-SA 2.5. – CC BY-SA 3.0. – CC BY-SA 4.0.