Lines Matching refs:TextView
103 import android.widget.TextView;
275 private TextView mTitle;
276 private TextView mWhenDate;
277 private TextView mWhenTime;
278 private TextView mWhere;
612 mTitle = (TextView) mView.findViewById(R.id.title);
613 mWhenDate = (TextView) mView.findViewById(R.id.when_date);
614 mWhenTime = (TextView) mView.findViewById(R.id.when_time);
615 mWhere = (TextView) mView.findViewById(R.id.where);
1105 final TextView textView = mWhere;
1106 if (textView != null) {
1107 textView.setAutoLinkMask(0);
1108 textView.setText(location.trim());
1109 linkifyTextView(textView);
1111 textView.setOnTouchListener(new OnTouchListener() {
1137 private static void linkifyTextView(TextView textView) {
1162 boolean linkifyFoundLinks = Linkify.addLinks(textView,
1184 CharSequence text = textView.getText();
1189 * If the contents of the TextView are already Spannable (which will be the case if
1265 // If we had to "upgrade" to Spannable, store the object into the TextView.
1267 textView.setText(spanText);
1270 // Linkify.addLinks() sets the TextView movement method if it finds any links. We
1272 MovementMethod mm = textView.getMovementMethod();
1275 if (textView.getLinksClickable()) {
1276 textView.setMovementMethod(LinkMovementMethod.getInstance());
1286 Linkify.addLinks(textView, mWildcardPattern, "geo:0,0?q=");
1333 text.add(((TextView) getView().findViewById(R.id.response_label)).getText());
1341 private void addFieldToAccessibilityEvent(List<CharSequence> text, TextView tv,
1601 TextView textView = (TextView) view.findViewById(id);
1602 if (textView == null)
1604 textView.setText(text);