Home | History | Annotate | Download | only in browser

Lines Matching refs:url

73             String url = getEditText().getText().toString();
74 if (url.length() > 0
75 && !BrowserActivity.ACCEPTED_URI_SCHEMA.matcher(url)
77 int colon = url.indexOf(':');
78 int space = url.indexOf(' ');
80 // if no colon, no space, add "http://" to make it a url
81 getEditText().setText("http://" + url);
84 // false so that the bad url will not override the old url
108 // match_parent so there is more room to type in a url.