I am faced with a problem trying to add a partial URL + a domain or URL generated by an EditText, I leave an example of the code if there could be one telling me where the error is, since I can not find a solution by any means.
Code:
Uri uriUrl = "http://google"+Uri.parse(et1.getText().toString());
Intent launchBrowser = new Intent(Intent.ACTION_VIEW, uriUrl);
So I understood that it was written in a thousand ways but I can not find the correct way