Fixed content message visualization

This commit is contained in:
Juan Miguel Boyero Corral 2012-04-04 02:47:33 +02:00
parent d48efdab33
commit 4fa4e03f2f

View File

@ -198,7 +198,12 @@ public class NotificationsCursorAdapter extends CursorAdapter {
contentMsgText = context.getString(R.string.marksMsg);
contentMsg.setText(contentMsgText);
contentVisible[cursor.getPosition()] = true;
} else {
contentMsgText = "";
contentMsg.setText(contentMsgText);
contentVisible[cursor.getPosition()] = false;
}
if(contentVisible[cursor.getPosition()]) {
contentMsg.setVisibility(View.VISIBLE);
} else {