问题 I have a TextView that I am populating with a Spannable made from some HTML. This code: textView.setText(Html.fromHtml(textContent, mImageGetter, null)); displays links, but they aren't clickable. This code: text.setMovementMethod(LinkMovementMethod.getInstance()); textView.setText(Html.fromHtml(textContent, mImageGetter, null)); doesn't display the links. The TextView is specified in the XML as <TextView android:id="@+id/text" android:layout_width="wrap_content" android:layout_height="wrap