HomeSort by relevance Sort by last modified time
    Searched refs:dayInfo (Results 1 - 2 of 2) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java 44 * is actually only a pointer to either a {@link DayInfo} or an
191 * {@link DayInfo} is a class that represents a day header in the widget. It
195 static class DayInfo {
203 DayInfo(int julianDay, String label) {
230 DayInfo other = (DayInfo) obj;
245 final List<DayInfo> mDayInfos;
259 mDayInfos = new ArrayList<DayInfo>(8);
336 final DayInfo dayInfo = populateDayInfo(day, recycle)
    [all...]
CalendarAppWidgetService.java 44 import com.android.calendar.widget.CalendarAppWidgetModel.DayInfo;
236 DayInfo dayInfo = mModel.mDayInfos.get(rowInfo.mIndex);
237 updateTextView(views, R.id.date, View.VISIBLE, dayInfo.mDayLabel);

Completed in 559 milliseconds