Lines Matching refs:TextView
24 import android.widget.TextView;
25 import android.widget.TextView.BufferType;
28 * Utility class to create clickable links inside {@link TextView TextViews}.
43 * Applies the text into the {@link TextView} and part of it a clickable link.
49 public static boolean linkify(TextView textView, StringBuilder text,
54 textView.setText(text);
60 textView.setText(text);
65 textView.setText(text.toString(), BufferType.SPANNABLE);
66 textView.setMovementMethod(LinkMovementMethod.getInstance());
67 Spannable spannableContent = (Spannable) textView.getText();