Back to project page Mamytas.
The source code is released under:
GNU General Public License
If you think the Android project Mamytas 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 mn.aug.restfulandroid.util; //from w ww. ja v a2 s . co m import android.app.DatePickerDialog; import android.app.Dialog; import android.app.DialogFragment; import android.os.Bundle; import android.view.View; import android.widget.DatePicker; import android.widget.EditText; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; /** * Created by Antoine on 16/11/2014. */ public class DatePickerFragment extends DialogFragment implements DatePickerDialog.OnDateSetListener { private EditText taskDueDate; public void setTaskDueDate(EditText taskDueDate){ this.taskDueDate = taskDueDate; } @Override public Dialog onCreateDialog(Bundle savedInstanceState) { // Use the current date as the default date in the picker final Calendar c = Calendar.getInstance(); int year = c.get(Calendar.YEAR); int month = c.get(Calendar.MONTH); int day = c.get(Calendar.DAY_OF_MONTH); // Create a new instance of DatePickerDialog and return it return new DatePickerDialog(getActivity(), this, year, month, day); } public void onDateSet(DatePicker view, int year, int month, int day) { try { this.taskDueDate.setText(DateHelper.getDateFromDate(year+"-"+month+"-"+day)); } catch (ParseException e) { /* Erreur format qui n'arrivera pas ici normalement */} } }