]> Johnzone git - dienst_android.git/commitdiff
added bool for holidays
authorJohn Janus <john.janus@haw-hamburg.de>
Sat, 6 Apr 2013 22:26:05 +0000 (00:26 +0200)
committerJohn Janus <john.janus@haw-hamburg.de>
Sat, 6 Apr 2013 22:26:05 +0000 (00:26 +0200)
src/de/rhinapotheke/notdienst/MainActivity.java

index 535b009a8c217f5a251f9d9b9f85e5717761af53..8bf7cf800fdbe65beaf53e388deef22081211ef6 100644 (file)
@@ -14,6 +14,7 @@ import android.app.DatePickerDialog;
 
 public class MainActivity extends Activity {
 
+  boolean holiday = false;
   Calendar cal;
   DateFormat fmtDate;
   Button dateLabel;
@@ -74,7 +75,7 @@ public class MainActivity extends Activity {
 
   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);