HomeSort by relevance Sort by last modified time
    Searched defs:datepicker (Results 1 - 4 of 4) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/datepicker/
ICU.java 1 package com.android.contacts.datepicker;
TwoDigitFormatter.java 1 package com.android.contacts.datepicker;
DatePickerDialog.java 17 package com.android.contacts.datepicker;
19 // This is a fork of the standard Android DatePicker that additionally allows toggling the year
31 import com.android.contacts.datepicker.DatePicker.OnDateChangedListener;
38 * A simple dialog containing an {@link DatePicker}.
40 * <p>See the <a href="{@docRoot}resources/tutorials/views/hello-datepicker.html">Date Picker
47 public static int NO_YEAR = DatePicker.NO_YEAR;
54 private final DatePicker mDatePicker;
75 void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth);
135 mDatePicker = (DatePicker) view.findViewById(R.id.datePicker)
    [all...]
DatePicker.java 17 package com.android.contacts.datepicker;
43 * This is a fork of the standard Android DatePicker that additionally allows toggling the year
48 * <p>See the <a href="{@docRoot}resources/tutorials/views/hello-datepicker.html">Date Picker
53 public class DatePicker extends FrameLayout {
86 * @param year The year that was set or {@link DatePicker#NO_YEAR} if no year was set
91 void onDateChanged(DatePicker view, int year, int monthOfYear, int dayOfMonth);
94 public DatePicker(Context context) {
98 public DatePicker(Context context, AttributeSet attrs) {
102 public DatePicker(Context context, AttributeSet attrs, int defStyle) {
253 * Constructor called from {@link DatePicker#onSaveInstanceState()
    [all...]

Completed in 72 milliseconds