I'm trying to pass on a URL of the form:
http://foo.com?param1=somevalue
to the Android Browser, however, once this URL is sent to the browser in this form exactly,
the browser seems to append a forward slash to the URL itself as follows:
http://foo.com/?param1=somevalue
And surprisingly, the android browser is having trouble parsing this. I'm not sure why this breaks the URL.
The invoking code is this:
Intent sampleIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(sampleURL));
startActivity(sampleIntent);
Is this a bug with the Android browser or do I need to do something differently here?