HomeSort by relevance Sort by last modified time
    Searched refs:day (Results 26 - 50 of 376) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/app/
DatePickerDialog.java 44 private static final String DAY = "day";
62 * @param dayOfMonth The day of the month that was set.
72 * @param dayOfMonth The initial day of the dialog.
88 * @param dayOfMonth The initial day of the dialog.
120 int month, int day) {
121 mDatePicker.init(year, month, day, this);
122 updateTitle(year, month, day);
139 * @param dayOfMonth The date day of month.
159 private void updateTitle(int year, int month, int day) {
195 int day = savedInstanceState.getInt(DAY); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekAdapter.java 72 float mClickedXLocation; // Used to find which day was clicked
288 protected void onDayTapped(Time day) {
289 setDayParameters(day);
292 // with the selected day's info
293 mController.sendEvent(mContext, EventType.GO_TO, day, day, -1,
297 mController.sendEvent(mContext, EventType.GO_TO, day, day, -1,
304 private void setDayParameters(Time day) {
305 day.timezone = mHomeTimeZone
373 Time day = mLongClickedView.getDayFromLocation(mClickedXLocation); local
    [all...]
SimpleWeeksAdapter.java 44 * given day, show a reduced number of days, or display an arbitrary number of
65 * Which day the week should start on. {@link Time#SUNDAY} through
70 * The Julian day to highlight as selected.
88 // The day to highlight as selected
90 // The week since 1970 that the selected day is in
161 * Updates the selected day and related parameters.
174 * Returns the currently highlighted day
261 Time day = ((SimpleWeekView)v).getDayFromLocation(event.getX()); local
263 Log.d(TAG, "Touched day at Row=" + view.mWeek + " day=" + day.toString())
    [all...]