/* * Copyright (C) 2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.holoeverywhere.widget.datetimepicker.date; import android.annotation.SuppressLint; import android.content.Context; import android.util.Log; import android.view.View; import android.view.ViewGroup; import android.widget.AbsListView.LayoutParams; import android.widget.BaseAdapter; import org.holoeverywhere.widget.datetimepicker.date.SimpleMonthView.OnDayClickListener; import java.util.Calendar; import java.util.HashMap; /** * An adapter for a list of {@link SimpleMonthView} items. */ public class SimpleMonthAdapter extends BaseAdapter implements OnDayClickListener { protected static final int MONTHS_IN_YEAR = 12; private static final String TAG = "SimpleMonthAdapter"; private final Context mContext; private final DatePickerController mController; private CalendarDay mSelectedDay; public SimpleMonthAdapter(Context context, DatePickerController controller) { mContext = context; mController = controller; init(); setSelectedDay(mController.getSelectedDay()); } public CalendarDay getSelectedDay() { return mSelectedDay; } /** * Updates the selected day and related parameters. * * @param day The day to highlight */ public void setSelectedDay(CalendarDay day) { mSelectedDay = day; notifyDataSetChanged(); } /** * Set up the gesture detector and selected time */ protected void init() { mSelectedDay = new CalendarDay(System.currentTimeMillis()); } @Override public int getCount() { return ((mController.getMaxYear() - mController.getMinYear()) + 1) * MONTHS_IN_YEAR; } @Override public Object getItem(int position) { return null; } @Override public long getItemId(int position) { return position; } @SuppressLint("NewApi") @SuppressWarnings("unchecked") @Override public View getView(int position, View convertView, ViewGroup parent) { SimpleMonthView v; HashMap<String, Integer> drawingParams = null; if (convertView != null) { v = (SimpleMonthView) convertView; // We store the drawing parameters in the view so it can be recycled drawingParams = (HashMap<String, Integer>) v.getTag(); } else { v = new SimpleMonthView(mContext); // Set up the new view LayoutParams params = new LayoutParams( LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT); v.setLayoutParams(params); v.setClickable(true); v.setOnDayClickListener(this); } if (drawingParams == null) { drawingParams = new HashMap<String, Integer>(); } drawingParams.clear(); final int month = position % MONTHS_IN_YEAR; final int year = position / MONTHS_IN_YEAR + mController.getMinYear(); Log.d(TAG, "Year: " + year + ", Month: " + month); int selectedDay = -1; if (isSelectedDayInMonth(year, month)) { selectedDay = mSelectedDay.day; } // Invokes requestLayout() to ensure that the recycled view is set with the appropriate // height/number of weeks before being displayed. v.reuse(); drawingParams.put(SimpleMonthView.VIEW_PARAMS_SELECTED_DAY, selectedDay); drawingParams.put(SimpleMonthView.VIEW_PARAMS_YEAR, year); drawingParams.put(SimpleMonthView.VIEW_PARAMS_MONTH, month); drawingParams.put(SimpleMonthView.VIEW_PARAMS_WEEK_START, mController.getFirstDayOfWeek()); v.setMonthParams(drawingParams); v.invalidate(); return v; } private boolean isSelectedDayInMonth(int year, int month) { return mSelectedDay.year == year && mSelectedDay.month == month; } @Override public void onDayClick(SimpleMonthView view, CalendarDay day) { if (day != null) { onDayTapped(day); } } /** * Maintains the same hour/min/sec but moves the day to the tapped day. * * @param day The day that was tapped */ protected void onDayTapped(CalendarDay day) { mController.tryVibrate(); mController.onDayOfMonthSelected(day.year, day.month, day.day); setSelectedDay(day); } /** * A convenience class to represent a specific date. */ public static class CalendarDay { int year; int month; int day; private Calendar calendar; public CalendarDay() { setTime(System.currentTimeMillis()); } public CalendarDay(long timeInMillis) { setTime(timeInMillis); } public CalendarDay(Calendar calendar) { year = calendar.get(Calendar.YEAR); month = calendar.get(Calendar.MONTH); day = calendar.get(Calendar.DAY_OF_MONTH); } public CalendarDay(int year, int month, int day) { setDay(year, month, day); } public void set(CalendarDay date) { year = date.year; month = date.month; day = date.day; } public void setDay(int year, int month, int day) { this.year = year; this.month = month; this.day = day; } private void setTime(long timeInMillis) { if (calendar == null) { calendar = Calendar.getInstance(); } calendar.setTimeInMillis(timeInMillis); month = calendar.get(Calendar.MONTH); year = calendar.get(Calendar.YEAR); day = calendar.get(Calendar.DAY_OF_MONTH); } } }