Searched refs:MonthView (Results 1 - 5 of 5) sorted by relevance

/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DSimpleMonthAdapter.java31 public MonthView createMonthView(Context context) {
32 final MonthView monthView = new SimpleMonthView(context);
H A DMonthAdapter.java27 import com.android.datetimepicker.date.MonthView.OnDayClickListener;
33 * An adapter for a list of {@link MonthView} items.
171 MonthView v;
174 v = (MonthView) convertView;
203 drawingParams.put(MonthView.VIEW_PARAMS_SELECTED_DAY, selectedDay);
204 drawingParams.put(MonthView.VIEW_PARAMS_YEAR, year);
205 drawingParams.put(MonthView.VIEW_PARAMS_MONTH, month);
206 drawingParams.put(MonthView.VIEW_PARAMS_WEEK_START, mController.getFirstDayOfWeek());
212 public abstract MonthView createMonthView(Context context);
220 public void onDayClick(MonthView vie
[all...]
H A DSimpleMonthView.java24 public class SimpleMonthView extends MonthView {
H A DDayPickerView.java256 MonthView child = (MonthView) view.getChildAt(0);
383 if (child instanceof MonthView) {
384 final CalendarDay focus = ((MonthView) child).getAccessibilityFocus();
388 ((MonthView) child).clearAccessibilityFocus();
413 if (child instanceof MonthView) {
414 if (((MonthView) child).restoreAccessibilityFocus(day)) {
H A DMonthView.java55 public abstract class MonthView extends View { class in inherits:View
56 private static final String TAG = "MonthView";
190 public MonthView(Context context) { method in class:MonthView
194 public MonthView(Context context, AttributeSet attr) { method in class:MonthView
706 getAccessibilityNodeProvider(MonthView.this).performAction(
713 getAccessibilityNodeProvider(MonthView.this).performAction(
813 public void onDayClick(MonthView view, CalendarDay day);

Completed in 155 milliseconds