반응형
private int getMonthLastDay(int year, int month){
switch (month) {
case 0:
case 2:
case 4:
case 6:
case 7:
case 9:
case 11:
return (31);
case 3:
case 5:
case 8:
case 10:
return (30);
default:
if(((year%4==0)&&(year%100!=0)) || (year%400==0) ) {
return (29); // 2월 윤년계산
} else {
return (28);
}
}
}
반응형
'Android' 카테고리의 다른 글
android:layout_weight 설정. (0) | 2016.02.19 |
---|---|
웹상에 이미지 Bitmap 으로 다운로드 하기. (0) | 2016.01.21 |
안드로이드 권한 (0) | 2016.01.18 |
inputType 속성 값. (0) | 2015.12.26 |
안드로이드에서 크기를 나타내는 단위. (0) | 2015.12.26 |