Searched refs:selectedDay (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DDayPickerPagerAdapter.java239 final int selectedDay;
241 selectedDay = mSelectedDay.get(Calendar.DAY_OF_MONTH);
243 selectedDay = -1;
260 v.setMonthParams(selectedDay, month, year, mFirstDayOfWeek,
H A DCalendarViewLegacyDelegate.java678 Calendar selectedDay = mAdapter.getSelectedDay();
680 selectedDay.get(Calendar.YEAR),
681 selectedDay.get(Calendar.MONTH),
682 selectedDay.get(Calendar.DAY_OF_MONTH));
1025 * @param selectedDay The time to highlight
1027 public void setSelectedDay(Calendar selectedDay) { argument
1028 if (selectedDay.get(Calendar.DAY_OF_YEAR) == mSelectedDate.get(Calendar.DAY_OF_YEAR)
1029 && selectedDay.get(Calendar.YEAR) == mSelectedDate.get(Calendar.YEAR)) {
1032 mSelectedDate.setTimeInMillis(selectedDay.getTimeInMillis());
H A DSimpleMonthView.java782 * @param selectedDay the selected day of the month, or -1 for no selection
790 void setMonthParams(int selectedDay, int month, int year, int weekStart, int enabledDayStart, argument
792 mActivatedDay = selectedDay;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DMonthAdapter.java194 int selectedDay = -1;
196 selectedDay = mSelectedDay.day;
203 drawingParams.put(MonthView.VIEW_PARAMS_SELECTED_DAY, selectedDay);

Completed in 142 milliseconds