I am using android google maps api v2 with many markers displayed on it. Each time you click on a marker a custom info window with specific tittle/snippet is open. The problem is that I cannot click on the URL "www.news.com". Please find below the options of my marker. How can I specify that the "www.news.com" is a HTML URL link inside the .snippet attribute, and when user clicking on it to open directly in mobiles explorer?
mMap.addMarker(new MarkerOptions()
.position(new LatLng(39.686286, 19.838443))
.title("HELLO")
.snippet("Name: \nSurname: \nphone: XXX \nwebsite: www.news.com")
.icon(BitmapDescriptorFactory.fromResource(R.drawable.location_icon)));