public class MainActivity extends Activity {
+ boolean holiday = false;
Calendar cal;
DateFormat fmtDate;
Button dateLabel;
private void updateDateLabel() {
dateLabel.setText(fmtDate.format(cal.getTime()));
- if (cal.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY) {
+ if (cal.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY || holiday) {
((TextView) findViewById(R.id.text_gl)).setText(R.string.glue_so_hol);
} else if (cal.get(Calendar.DAY_OF_WEEK) == Calendar.SATURDAY) {
((TextView) findViewById(R.id.text_gl)).setText(R.string.glue_sa);