Searched refs:DatePicker (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DDatePickerActivity.java29 DatePicker picker = new DatePicker(this);
30 picker.init(2012, 3, 3, true, new DatePicker.OnDateChangedListener() {
32 public void onDateChanged(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
H A DDatePicker.java49 public class DatePicker extends FrameLayout { class in inherits:FrameLayout
83 void onDateChanged(DatePicker view, int year, int monthOfYear, int dayOfMonth);
86 public DatePicker(Context context) { method in class:DatePicker
90 public DatePicker(Context context, AttributeSet attrs) { method in class:DatePicker
95 public DatePicker(Context context, AttributeSet attrs, int defStyle) { method in class:DatePicker
174 com.android.internal.R.styleable.DatePicker);
295 * Constructor called from {@link DatePicker#onSaveInstanceState()}
471 mOnDateChangedListener.onDateChanged(DatePicker.this, year, mMonth, mDay);
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/src/main/java/com/android/layoutlib/test/myapplication/
H A DCustomDate.java5 import android.widget.DatePicker;
7 public class CustomDate extends DatePicker {
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
H A DCustomDate.classCustomDate.java package com.android.layoutlib.test.myapplication public com.android.layoutlib ...
/frameworks/base/core/java/android/app/
H A DDatePickerDialog.java28 import android.widget.DatePicker;
29 import android.widget.DatePicker.OnDateChangedListener;
30 import android.widget.DatePicker.ValidationCallback;
37 * A simple dialog containing an {@link android.widget.DatePicker}.
49 private final DatePicker mDatePicker;
67 void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth);
118 mDatePicker = (DatePicker) view.findViewById(R.id.datePicker);
124 public void onDateChanged(DatePicker view, int year, int month, int day) {
148 * Gets the {@link DatePicker} contained in this dialog.
152 public DatePicker getDatePicke
[all...]
/frameworks/base/core/java/android/widget/
H A DDatePicker.java92 public class DatePicker extends FrameLayout { class in inherits:FrameLayout
93 private static final String LOG_TAG = DatePicker.class.getSimpleName();
114 void onDateChanged(DatePicker view, int year, int monthOfYear, int dayOfMonth);
117 public DatePicker(Context context) { method in class:DatePicker
121 public DatePicker(Context context, AttributeSet attrs) { method in class:DatePicker
125 public DatePicker(Context context, AttributeSet attrs, int defStyleAttr) { method in class:DatePicker
129 public DatePicker(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { method in class:DatePicker
132 final TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.DatePicker,
212 * Gets the minimal date supported by this {@link DatePicker} in
237 * Gets the maximal date supported by this {@link DatePicker} i
[all...]
H A DDatePickerCalendarDelegate.java49 class DatePickerCalendarDelegate extends DatePicker.AbstractDatePickerDelegate {
85 private DatePicker.OnDateChangedListener mDateChangedListener;
96 public DatePickerCalendarDelegate(DatePicker delegator, Context context, AttributeSet attrs,
111 R.styleable.DatePicker, defStyleAttr, defStyleRes);
363 DatePicker.OnDateChangedListener callBack) {
489 throw new UnsupportedOperationException("Not supported by calendar-mode DatePicker");
494 // No-op for compatibility with the old DatePicker.
504 // No-op for compatibility with the old DatePicker.
574 return DatePicker.class.getName();
617 * Constructor called from {@link DatePicker#onSaveInstanceStat
[all...]

Completed in 332 milliseconds