You are not building your Uri correctly, trying to combine 2 lines, use this:
String s = "I'm a string variable";
String concatenated = s + " and I'm another String variable";
Now the contents of concatenated
I am a string variable and I am another String variable
If you do this:
String concatenated = "s + and I'm another String variable";
concatenated content
s + and I am another String variable
Secondly, why do you use geo-uri? This is for viewing locations. To view a website, simply use the URL (and don't forget the “http: //” part):
String URL = "http://www.google.com";
browserIntent.setData(Uri.parse(URL));