Back to project page GroupGoal.
The source code is released under:
GNU General Public License
If you think the Android project GroupGoal listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.cs121.groupgoal; /*from w ww . ja va 2s. c om*/ import java.util.Calendar; import android.app.DialogFragment; import android.app.DatePickerDialog; import android.app.DatePickerDialog.OnDateSetListener; import android.app.Dialog; import android.os.Bundle; /** * This activity is used when a user posts a goal and needs to choose a date from the pop-out calendar * */ public class DatePickerDialogFragment extends DialogFragment { //used to pick dates when posting a Goal private OnDateSetListener mDateSetListener; public DatePickerDialogFragment() { } public DatePickerDialogFragment(OnDateSetListener callback) { mDateSetListener = (OnDateSetListener) callback; } public Dialog onCreateDialog(Bundle savedInstanceState) { Calendar cal = Calendar.getInstance(); return new DatePickerDialog(getActivity(), mDateSetListener, cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH)); } }