Fixed content message visualization

git-svn-id: https://forja.rediris.es/svn/cusl6-swadroid/trunk@257 5bc14d19-1e4b-4ba2-aa50-860af135f48c
This commit is contained in:
Juan Miguel Boyero Corral 2012-04-04 01:10:30 +00:00
parent 991025d79c
commit 3ddf5ba259

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 {