/* * Copyright 2019 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 com.google.android.material.picker; import android.content.Context; import androidx.annotation.Nullable; import androidx.annotation.RestrictTo; import androidx.annotation.RestrictTo.Scope; import com.google.android.material.resources.MaterialAttributes; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.TextView; import java.util.Calendar; /** * Represents the days of a month with {@link TextView} instances for each day. * *
The number of rows is always equal to the maximum number of weeks that can exist across all * months (e.g., 6 for the GregorianCalendar). * * @hide */ @RestrictTo(Scope.LIBRARY_GROUP) public class MonthInYearAdapter extends BaseAdapter { private static final int MAXIMUM_WEEKS = Calendar.getInstance().getMaximum(Calendar.WEEK_OF_MONTH); private final MonthInYear monthInYear; private final int textViewSize; MonthInYearAdapter(Context context, MonthInYear monthInYear) { this.monthInYear = monthInYear; textViewSize = MaterialAttributes.resolveMinimumAccessibleTouchTarget(context); } /** * Returns a {@link Calendar} object for the given grid position * * @param position Index for the item. 0 matches the {@link Calendar#getFirstDayOfWeek()} for the * first week of the month represented by {@link MonthInYear}. * @return An {@link Calendar} representing the Day at the position or null if the position does * not represent a valid day in the month. */ @Nullable @Override public Calendar getItem(int position) { if (position < monthInYear.daysFromStartOfWeekToFirstOfMonth() || position > lastPositionInMonth()) { return null; } return monthInYear.getDay(positionToDay(position)); } @Override public long getItemId(int position) { return position / monthInYear.daysInWeek; } /** * Returns the number of days in a week times the maximum number of weeks in any possible month. * This number is at least the number of days in the month. * * @return The maximum valid position index */ @Override public int getCount() { return monthInYear.daysInWeek * MAXIMUM_WEEKS; } @Override public View getView(int position, View convertView, ViewGroup parent) { TextView day = (TextView) convertView; if (convertView == null) { day = new TextView(parent.getContext()); day.setHeight(textViewSize); } int offsetPosition = position - firstPositionInMonth(); if (offsetPosition < 0 || offsetPosition >= monthInYear.daysInMonth) { day.setVisibility(View.INVISIBLE); } else { day.setText(String.valueOf(offsetPosition + 1)); day.setVisibility(View.VISIBLE); } return day; } /** * Returns the index of the first position which is part of the month. * *
For example, this returns the position index representing February 1st. Since position 0 * represents a day which must be the first day of the week, the first position in the month may * be greater than 0. */ public int firstPositionInMonth() { return monthInYear.daysFromStartOfWeekToFirstOfMonth(); } /** * Returns the index of the last position which is part of the month. * *
For example, this returns the position index representing November 30th. Since position 0 * represents a day which must be the first day of the week, the last position in the month may * not match the number of days in the month. */ public int lastPositionInMonth() { return monthInYear.daysFromStartOfWeekToFirstOfMonth() + monthInYear.daysInMonth - 1; } /** * Returns the day representing the provided adapter index * * @param position The adapter index * @return The day corresponding to the adapter index. May be non-positive for position inputs * less than {@link MonthInYearAdapter#firstPositionInMonth()}. */ public int positionToDay(int position) { return position - monthInYear.daysFromStartOfWeekToFirstOfMonth() + 1; } /** True when a provided adapter position is within the calendar month */ public boolean withinMonth(int position) { return position >= firstPositionInMonth() && position <= lastPositionInMonth(); } }