在android中设置日期选择器和时间选择器的时间和日期

and*_*irl 44 android timepicker android-datepicker

我在我的申请中使用了日期选择器和时间选择器.我想设置页面加载的日期和时间.这可能吗?怎么会这样?

yil*_*git 117

我解决了类似的问题如下

Calendar cal = Calendar.getInstance();

int year = cal.get(Calendar.YEAR);
int month = cal.get(Calendar.MONTH);
int day = cal.get(Calendar.DAY_OF_MONTH);
int hour = cal.get(Calendar.HOUR_OF_DAY);
int min = cal.get(Calendar.MINUTE);

datePicker.updateDate(year, month, day);

timePicker.setCurrentHour(hour);
timePicker.setCurrentMinute(min);
Run Code Online (Sandbox Code Playgroud)

  • 注意:11月:更新日期:月份 (2认同)

Jos*_*ter 14

使用JodaTime

JodaTime是一个非常流行且有用的库,用于处理Java中的日期和时间.如果您不使用它,我强烈建议您查看它.

这是一个简单的例子,说明我如何设置一个DatePickerTimePicker一个DateTime对象,它可以是当前日期或过去或未来的任何日期(在这种情况下调用属性inspected_at):

DatePicker datePicker = (DatePicker) findViewById(R.id.inspected_at_date);
TimePicker timePicker = (TimePicker) findViewById(R.id.inspected_at_time);

DateTime inspected_at = DateTime.now()                // Typically pulled from DB.

int year    = inspected_at.getYear() ;
int month   = inspected_at.getMonthOfYear() - 1;      // Need to subtract 1 here.
int day     = inspected_at.getDayOfMonth();  
int hour    = inspected_at.getHourOfDay();
int minutes = inspected_at.getMinuteOfHour();

datePicker.updateDate(year, month, day);              // Set date.

timePicker.setCurrentHour(hour);                      // Set time.
timePicker.setCurrentMinute(minutes);
Run Code Online (Sandbox Code Playgroud)

希望有所帮助.

J.P


Mir*_*rko 7

updateDateDatePicker 有一种方法.

这是我在我的一个应用程序中使用的,而不是使用对话框:

//set datePicker to position
String date_saved = project_row.getString(
    project_row.getColumnIndex("project_startdate"));

int day  = Integer.parseInt(date_saved.substring(0,2));
int year = Integer.parseInt(date_saved.substring(5,9));
String month = date_saved.substring(2,5);
int month_code = getMonthInt(month);

project_startdate_data = (DatePicker) findViewById(R.id.project_startdate_data);
project_startdate_data.updateDate(year, month_code, day);
Run Code Online (Sandbox Code Playgroud)

这里project_row是我的光标,日期被保存在列project_startdate22MAY2012

你需要这个:

private int getMonthInt(String month) {
    if (month.equalsIgnoreCase("JAN")) return 0;
    if (month.equalsIgnoreCase("FEB")) return 1;
    if (month.equalsIgnoreCase("MAR")) return 2;
    if (month.equalsIgnoreCase("APR")) return 3;
    if (month.equalsIgnoreCase("MAY")) return 4;
    if (month.equalsIgnoreCase("JUN")) return 5;
    if (month.equalsIgnoreCase("JUL")) return 6;
    if (month.equalsIgnoreCase("AUG")) return 7;
    if (month.equalsIgnoreCase("SEP")) return 8;
    if (month.equalsIgnoreCase("OCT")) return 9;
    if (month.equalsIgnoreCase("NOV")) return 10;
    if (month.equalsIgnoreCase("DEC")) return 11;

    //return -1 if month code not found
    return -1;
}
Run Code Online (Sandbox Code Playgroud)


Far*_*han 2

检查如何使用日期选择器对话框。并在onCreate()中使用更新函数;如果页面加载意味着活动开始......希望它有帮助。