Fixed br tag bug in notifications

This commit is contained in:
Juan Miguel Boyero Corral 2012-03-05 01:38:42 +01:00
parent ec36449a4c
commit ffc3c30648

View File

@ -190,7 +190,7 @@ public class NotificationsCursorAdapter extends CursorAdapter {
if(contentText.equals("anyType{}"))
contentText = context.getString(R.string.noContentMsg);
content.setText(Html.fromHtml(contentText));
content.setText(contentText);
if(contentVisible[cursor.getPosition()]) {
content.setVisibility(View.VISIBLE);