mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.4 KiB
Java
117 lines
3.4 KiB
Java
/*
|
|
* ASTRID: Android's Simple Task Recording Dashboard
|
|
*
|
|
* Copyright (c) 2009 Tim Su
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
package com.todoroo.andlib.widget;
|
|
|
|
import java.text.Format;
|
|
import java.util.Date;
|
|
|
|
import android.app.DatePickerDialog;
|
|
import android.app.TimePickerDialog;
|
|
import android.app.DatePickerDialog.OnDateSetListener;
|
|
import android.app.TimePickerDialog.OnTimeSetListener;
|
|
import android.content.Context;
|
|
import android.text.format.DateFormat;
|
|
import android.view.View;
|
|
import android.widget.Button;
|
|
import android.widget.DatePicker;
|
|
import android.widget.TimePicker;
|
|
|
|
public class DateControlSet implements OnTimeSetListener,
|
|
OnDateSetListener, View.OnClickListener {
|
|
|
|
private final Format dateFormatter;
|
|
private final Format timeFormatter;
|
|
|
|
protected final Context context;
|
|
protected Button dateButton;
|
|
protected Button timeButton;
|
|
protected Date date;
|
|
|
|
protected DateControlSet(Context context) {
|
|
this.context = context;
|
|
|
|
dateFormatter = DateFormat.getDateFormat(context);
|
|
timeFormatter = DateFormat.getTimeFormat(context);
|
|
}
|
|
|
|
public DateControlSet(Context context, Button dateButton, Button timeButton) {
|
|
this(context);
|
|
|
|
this.dateButton = dateButton;
|
|
this.timeButton = timeButton;
|
|
|
|
if(dateButton != null)
|
|
dateButton.setOnClickListener(this);
|
|
|
|
if(timeButton != null)
|
|
timeButton.setOnClickListener(this);
|
|
|
|
setDate(null);
|
|
}
|
|
|
|
public Date getDate() {
|
|
return date;
|
|
}
|
|
|
|
/** Initialize the components for the given date field */
|
|
public void setDate(Date newDate) {
|
|
if(newDate == null) {
|
|
date = new Date();
|
|
} else {
|
|
this.date = new Date(newDate.getTime());
|
|
}
|
|
|
|
updateDate();
|
|
updateTime();
|
|
}
|
|
|
|
public void onDateSet(DatePicker view, int year, int month, int monthDay) {
|
|
date.setYear(year - 1900);
|
|
date.setMonth(month);
|
|
date.setDate(monthDay);
|
|
updateDate();
|
|
}
|
|
|
|
public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
|
|
date.setHours(hourOfDay);
|
|
date.setMinutes(minute);
|
|
updateTime();
|
|
}
|
|
|
|
public void updateDate() {
|
|
if(dateButton != null)
|
|
dateButton.setText(dateFormatter.format(date));
|
|
|
|
}
|
|
|
|
public void updateTime() {
|
|
if(timeButton != null)
|
|
timeButton.setText(timeFormatter.format(date));
|
|
}
|
|
|
|
public void onClick(View v) {
|
|
if(v == timeButton)
|
|
new TimePickerDialog(context, this, date.getHours(),
|
|
date.getMinutes(), false).show();
|
|
else
|
|
new DatePickerDialog(context, this, 1900 +
|
|
date.getYear(), date.getMonth(), date.getDate()).show();
|
|
}
|
|
} |