Made reply text HTML compliant.

This commit is contained in:
RyanBateman 2012-10-04 16:20:04 -04:00
parent e443bd92c5
commit cbbb899565

View file

@ -142,7 +142,7 @@ public class SetupCommentSectionTask extends AsyncTask<Void, Void, Void> {
Reply reply = Reply.fromCursor(replies);
View replyView = inflater.inflate(R.layout.include_reply, null);
TextView replyText = (TextView) replyView.findViewById(R.id.reply_text);
replyText.setText(reply.text);
replyText.setText(Html.fromHtml(reply.text));
ImageView replyImage = (ImageView) replyView.findViewById(R.id.reply_user_image);
Cursor replyCursor = resolver.query(FeedProvider.USERS_URI, null, DatabaseConstants.USER_USERID + " IN (?)", new String[] { reply.userId }, null);