Lines Matching refs:mResources
564 protected final Resources mResources; field in DayView
658 mResources = context.getResources(); in DayView()
659 mCreateNewEventString = mResources.getString(R.string.event_create); in DayView()
660 mNewEventHintString = mResources.getString(R.string.day_view_new_event_hint); in DayView()
663 DATE_HEADER_FONT_SIZE = (int) mResources.getDimension(R.dimen.date_header_text_size); in DayView()
664 DAY_HEADER_FONT_SIZE = (int) mResources.getDimension(R.dimen.day_label_text_size); in DayView()
665 ONE_DAY_HEADER_HEIGHT = (int) mResources.getDimension(R.dimen.one_day_header_height); in DayView()
666 DAY_HEADER_BOTTOM_MARGIN = (int) mResources.getDimension(R.dimen.day_header_bottom_margin); in DayView()
667 EXPAND_ALL_DAY_BOTTOM_MARGIN = (int) mResources.getDimension(R.dimen.all_day_bottom_margin); in DayView()
668 HOURS_TEXT_SIZE = (int) mResources.getDimension(R.dimen.hours_text_size); in DayView()
669 AMPM_TEXT_SIZE = (int) mResources.getDimension(R.dimen.ampm_text_size); in DayView()
670 MIN_HOURS_WIDTH = (int) mResources.getDimension(R.dimen.min_hours_width); in DayView()
671 HOURS_LEFT_MARGIN = (int) mResources.getDimension(R.dimen.hours_left_margin); in DayView()
672 HOURS_RIGHT_MARGIN = (int) mResources.getDimension(R.dimen.hours_right_margin); in DayView()
673 MULTI_DAY_HEADER_HEIGHT = (int) mResources.getDimension(R.dimen.day_header_height); in DayView()
680 EVENT_TEXT_FONT_SIZE = (int) mResources.getDimension(eventTextSizeId); in DayView()
681 NEW_EVENT_HINT_FONT_SIZE = (int) mResources.getDimension(R.dimen.new_event_hint_text_size); in DayView()
682 MIN_EVENT_HEIGHT = mResources.getDimension(R.dimen.event_min_height); in DayView()
684 EVENT_TEXT_TOP_MARGIN = (int) mResources.getDimension(R.dimen.event_text_vertical_margin); in DayView()
689 EVENT_TEXT_LEFT_MARGIN = (int) mResources in DayView()
697 mScale = mResources.getDisplayMetrics().density; in DayView()
738 mCurrentTimeLine = mResources.getDrawable(R.drawable.timeline_indicator_holo_light); in DayView()
739 mCurrentTimeAnimateLine = mResources in DayView()
741 mTodayHeaderDrawable = mResources.getDrawable(R.drawable.today_blue_week_holo_light); in DayView()
742 mExpandAlldayDrawable = mResources.getDrawable(R.drawable.ic_expand_holo_light); in DayView()
743 mCollapseAlldayDrawable = mResources.getDrawable(R.drawable.ic_collapse_holo_light); in DayView()
744 mNewEventHintColor = mResources.getColor(R.color.new_event_hint_text_color); in DayView()
745 mAcceptedOrTentativeEventBoxDrawable = mResources in DayView()
754 mResources.getString(R.string.new_event_dialog_option) in DayView()
756 mLongPressTitle = mResources.getString(R.string.new_event_dialog_label); in DayView()
803 mWeek_saturdayColor = mResources.getColor(R.color.week_saturday); in init()
804 mWeek_sundayColor = mResources.getColor(R.color.week_sunday); in init()
805 mCalendarDateBannerTextColor = mResources.getColor(R.color.calendar_date_banner_text_color); in init()
806 mFutureBgColorRes = mResources.getColor(R.color.calendar_future_bg_color); in init()
807 mBgColor = mResources.getColor(R.color.calendar_hour_background); in init()
808 mCalendarAmPmLabel = mResources.getColor(R.color.calendar_ampm_label); in init()
809 mCalendarGridAreaSelected = mResources.getColor(R.color.calendar_grid_area_selected); in init()
810 mCalendarGridLineInnerHorizontalColor = mResources in init()
812 mCalendarGridLineInnerVerticalColor = mResources in init()
814 mCalendarHourLabelColor = mResources.getColor(R.color.calendar_hour_label); in init()
815 mPressedColor = mResources.getColor(R.color.pressed); in init()
816 mClickedColor = mResources.getColor(R.color.day_event_clicked_background_color); in init()
817 mEventTextColor = mResources.getColor(R.color.calendar_event_text_color); in init()
818 mMoreEventsTextColor = mResources.getColor(R.color.month_event_other_color); in init()
824 int gridLineColor = mResources.getColor(R.color.calendar_grid_line_highlight_color); in init()
3028 String text = mResources.getQuantityString(R.plurals.month_more_events, remainingEvents); in drawMoreAlldayEvents()