Home | History | Annotate | Download | only in browser

Lines Matching refs:url

49         mUrlText = (TextView) findViewById(R.id.url);
117 * Set the new url for the bookmark item.
118 * @param url The new url for the bookmark item.
120 /* package */ void setUrl(String url) {
121 if (url == null) {
125 mUrl = url;
127 if (url.length() > BrowserSettings.MAX_TEXTVIEW_LEN) {
128 url = url.substring(0, BrowserSettings.MAX_TEXTVIEW_LEN);
131 mUrlText.setText(url);