Home
last modified time | relevance | path

Searched refs:SimpleMonthView (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/widget/
DSimpleMonthAdapter.java30 class SimpleMonthAdapter extends BaseAdapter implements SimpleMonthView.OnDayClickListener {
95 SimpleMonthView v; in getView()
98 v = (SimpleMonthView) convertView; in getView()
102 v = new SimpleMonthView(mContext); in getView()
157 public void onDayClick(SimpleMonthView view, Calendar day) { in onDayClick()
DDayPickerView.java246 SimpleMonthView child = (SimpleMonthView) view.getChildAt(0); in onScroll()
379 if (child instanceof SimpleMonthView) { in findAccessibilityFocus()
380 final Calendar focus = ((SimpleMonthView) child).getAccessibilityFocus(); in findAccessibilityFocus()
405 if (child instanceof SimpleMonthView) { in restoreAccessibilityFocus()
406 if (((SimpleMonthView) child).restoreAccessibilityFocus(day)) { in restoreAccessibilityFocus()
DSimpleMonthView.java53 class SimpleMonthView extends View { class
149 public SimpleMonthView(Context context) { in SimpleMonthView() method in SimpleMonthView
153 public SimpleMonthView(Context context, AttributeSet attrs) { in SimpleMonthView() method in SimpleMonthView
157 public SimpleMonthView(Context context, AttributeSet attrs, int defStyle) { in SimpleMonthView() method in SimpleMonthView
589 getAccessibilityNodeProvider(SimpleMonthView.this).performAction( in setFocusedVirtualView()
596 getAccessibilityNodeProvider(SimpleMonthView.this).performAction( in clearFocusedVirtualView()
695 public void onDayClick(SimpleMonthView view, Calendar day); in onDayClick()
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DSimpleMonthView.java24 public class SimpleMonthView extends MonthView { class
26 public SimpleMonthView(Context context) { in SimpleMonthView() method in SimpleMonthView
DSimpleMonthAdapter.java32 final MonthView monthView = new SimpleMonthView(context); in createMonthView()