Enabled marks function in notifications module

git-svn-id: https://forja.rediris.es/svn/cusl6-swadroid/trunk@235 5bc14d19-1e4b-4ba2-aa50-860af135f48c
This commit is contained in:
Juan Miguel Boyero Corral 2012-02-01 23:44:35 +00:00
parent a0e58a966e
commit ca589436f7

View File

@ -220,15 +220,15 @@ public class NotificationsCursorAdapter extends CursorAdapter {
viewType = String.valueOf(eventType.getText());
marksType = ctx.getString(R.string.marksFile);
/*if(viewType.equals(marksType)) {
if(viewType.equals(marksType)) {
TextView content = (TextView) view.findViewById(R.id.eventText);
Intent activity = new Intent(ctx.getApplicationContext(), Marks.class);
activity.putExtra("content", content.getText().toString());
ctx.startActivity(activity);
} else {*/
} else {
contentVisible[position] = !contentVisible[position];
this.notifyDataSetChanged();
//}
}
}
}