Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

646
Vistas
Android Kotlin open Link with button

i try to open an link with a button in Kotlin, but if i use this code

fun openNewTabWindow(urls: String, context: Context) { 
    val uris = Uri.parse(urls) 
    val intents = Intent(Intent.ACTION_VIEW, uris) 
    val b = Bundle() 
    b.putBoolean("new_window", true) 
    intents.putExtras(b)
    context.startActivity(intents)
}

And in my button i use

openNewTabWindows("https://Google.com/")

It say it need context After url?

What does that mean?

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

openNewTabWindow(urls: String, context: Context) function needs 2 paramters, a String and a Context.

And in my button i use openNewTabWindows("https://Google.com/")

You just called this function with 1 parameter, then of course

It say it need context After url.

You need to pass a Context as the second parameter. Since you say you are implementing the action of clicking a button (which is, inside @Override public void onClick(View v) {} in Java, or a Lambda with type (View) -> Unit in Kotlin), which is probably inside an Activity, and the reference of this may be changed, you can pass getContext() or for example MainActivity.this as the context needed for program, or

openNewTabWindows("https://Google.com/", context) // Kotlin version of getContext()
openNewTabWindows("https://Google.com/", this@MainActivity) // Kotlin version of MainActivity.this

May both OK.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda