devaige / DatePicker

Useful and powerful date picker for android
Apache License 2.0
1.86k stars 414 forks source link

大神,如何设置控件只能向右滑动、不能上下或者向左滑动啊 #25

Open lv910929 opened 8 years ago

lv910929 commented 8 years ago

@AigeStudio

Haofengshang commented 8 years ago

MonthView里有个MonthView枚举方法,HOR(横向滑动),VER(上下滑动),注释掉VER并删掉报错的代码(跟VER相关的);然后onDraw方法里draw(canvas, width * indexMonth, (indexYear - 1) * height, topYear, topMonth);跟draw(canvas, width * indexMonth, (indexYear + 1) * height, bottomYear, bottomMonth);这两行代码删掉就可以了。