我想在列表视图中显示Html格式的文本。我在适配器中使用了TextView。 这是我在适配器中的代码:
txtBody.setText(Html.fromHtml(myHtmlString));
txtBody.setLinksClickable(true);
txtBody.setMovementMethod(LinkMovementMethod.getInstance());
问题是:当我触摸TextView上的超链接时,它在LogCat中崩溃并出现此错误:
android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?