Android: Convertir URLs en enlaces dentro de un TextView

septiembre 8, 2017

Si el texto que vamos a mostrar en un TextView contiene código HTML, se visualizarán correctamente los enlaces, negritas, etc. Deberemos hacerlo de así desde código: textView1.setText( Html.fromHtml("Mi <strong>página web</strong>: " + "<a href="http://jonsegador.com">http://jonsegador.com</a>") );textView1.setText( Html.fromHtml("Mi <strong>página web</strong>: " + "<a href="http://jonsegador.com">http://jonsegador.com</a>") ); En cambio, si el texto no está en formato HTML pero contiene URLs (sin las etiquetas <a>), podemos convertir a enlace cualquier URL que aparezca en el ...