Questions tagged [html.fromhtml]

1 questions
0
votes
0 answers

Why are URLs not getting linkified when enclosed in Html.fromHTML() in my Android app?

I have the following code executed in onBindViewHolder() of a RecyclerView: String commentPrompt = "" + ((ViewHolder) viewHolder).comment.getText().toString() + ""; TextView commentText = new TextView(context); …