This is the Android sample project making the Vertically scrollable calendar for study.
이 저장소는 안드로이드에서 세로 스크롤이 가능한 달력을 만들기 위해 만든 목업샘플입니다.
특정 날짜와 페이지 위치를 동기화하기 위해 기본 날짜를 만듭니다. 그리고 수천 페이지 중간에 기본 위치도 생성합니다.
/** Default year to calculate the page position */
final static int BASE_YEAR = 2015;
/** Default month to calculate the page position */
final static int BASE_MONTH = Calendar.JANUARY;
/** Calendar instance based on default year and month */
final Calendar BASE_CAL;
/** Page numbers to reuse */
final static int PAGES = 5;
/** Loops, I think 1000 may be infinite scroll. */
final static int LOOPS = 1000;
/** position basis */
final static int BASE_POSITION = PAGES * LOOPS / 2;
...
Calendar base = Calendar.getInstance();
base.set(BASE_YEAR, BASE_MONTH, 1);
BASE_CAL = base;
...그런 다음 페이지 위치별로 특정 날짜를 얻을 수 있습니다.
public YearMonth getYearMonth(int position) {
Calendar cal = (Calendar)BASE_CAL.clone();
cal.add(Calendar.MONTH, position - BASE_POSITION);
return new YearMonth(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH));
}주어진 날짜별로 특정 페이지 위치를 얻을 수 있습니다.
/**
* Get the page position by given date
* @param year 4 digits number of year
* @param month month number
* @return page position
*/
public int getPosition(int year, int month) {
Calendar cal = Calendar.getInstance();
cal.set(year, month, 1);
return BASE_POSITION + howFarFromBase(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH));
}
/**
* How many months exist from the base month to the given values?
* @param year the year to compare with the base year
* @param month the month to compare with the base month
* @return counts of month
*/
private int howFarFromBase(int year, int month) {
int disY = (year - BASE_YEAR) * 12;
int disM = month - BASE_MONTH;
return disY + disM;
}In this project, I embed VerticalViewPager for just vertical view pager. And I refer to 'SimpleInfiniteCarousel' to make a simple infinite carousel with ViewPager on Android.
You can see sample video.
