Home | History | Annotate | Download | only in calendar

Lines Matching refs:TextView

93 import android.widget.TextView;
305 private TextView mTitle;
306 private TextView mWhenDateTime;
307 private TextView mWhere;
695 mTitle = (TextView) mView.findViewById(R.id.title);
696 mWhenDateTime = (TextView) mView.findViewById(R.id.when_datetime);
697 mWhere = (TextView) mView.findViewById(R.id.where);
1228 final TextView textView = mWhere;
1229 if (textView != null) {
1230 textView.setAutoLinkMask(0);
1231 textView.setText(location.trim());
1233 linkifyTextView(textView);
1239 textView.setOnTouchListener(new OnTouchListener() {
1490 private static void linkifyTextView(TextView textView) {
1499 CharSequence origText = textView.getText();
1500 Linkify.addLinks(textView, Linkify.ALL);
1503 if (textView.getText() instanceof Spannable) {
1504 Spannable spanText = (Spannable) textView.getText();
1517 textView.setText(origText);
1518 Linkify.addLinks(textView, mWildcardPattern, "geo:0,0?q=");
1542 boolean linkifyFoundLinks = Linkify.addLinks(textView,
1552 CharSequence text = textView.getText();
1556 * If the contents of the TextView are already Spannable (which will be the case if
1612 // If we had to "upgrade" to Spannable, store the object into the TextView.
1614 textView.setText(spanText);
1617 // Linkify.addLinks() sets the TextView movement method if it finds any links. We
1619 MovementMethod mm = textView.getMovementMethod();
1622 if (textView.getLinksClickable()) {
1623 textView.setMovementMethod(LinkMovementMethod.getInstance());
1632 Linkify.addLinks(textView, mWildcardPattern, "geo:0,0?q=");
1678 text.add(((TextView) getView().findViewById(R.id.response_label)).getText());
1686 private void addFieldToAccessibilityEvent(List<CharSequence> text, TextView tv,
1961 TextView textView = (TextView) view.findViewById(id);
1962 if (textView == null)
1964 textView.setText(text);