Lines Matching refs:url
57 mUrlText = (TextView) findViewById(R.id.url);
122 * Set the new url for the bookmark item.
123 * @param url The new url for the bookmark item.
125 /* package */ void setUrl(String url) {
126 if (url == null) {
130 mUrl = url;
132 url = UrlUtils.stripUrl(url);
133 if (url.length() > MAX_TEXTVIEW_LEN) {
134 url = url.substring(0, MAX_TEXTVIEW_LEN);
137 mUrlText.setText(url);