在用户通过 DatePickerDialog 输入日期后,我调用了 onResume() 来更新我的显示。这行得通。但是在新版本中,我使用的是 DatePickerFragment ,这不再有效。
public void onDateSet(DatePicker view, int year, int month, int day)
{ // Do something with the date chosen by the user
userSetYear=year;
userSetMonth=month;
userSetDay=day;
userSetDate=true;
onResume(); //activates the wrong onResume, has no affect on display
//MainActivity.onResume();//error message : Cannot make a static reference to the non-static method onResume() from the type MainActivity
}