|
|
@@ -30,7 +30,6 @@ public class OASigninPicker extends WheelPicker {
|
|
|
private ArrayList<String> days = new ArrayList<String>();
|
|
|
private String yearLabel = "年", monthLabel = "月", dayLabel = "日";
|
|
|
private int selectedYearIndex = 0, selectedMonthIndex = 0, selectedDayIndex = 0;
|
|
|
- private String hourLabel = "时", minuteLabel = "分";
|
|
|
private OnDateTimePickListener onDateTimePickListener;
|
|
|
private int year, month, day = 0;
|
|
|
|
|
|
@@ -42,7 +41,7 @@ public class OASigninPicker extends WheelPicker {
|
|
|
public OASigninPicker(Activity activity) {
|
|
|
super(activity);
|
|
|
textSize = 16;//年月日时分,比较宽,设置字体小一点才能显示完整
|
|
|
- for (int i = 2010; i <= 2016; i++) {
|
|
|
+ for (int i = 2011; i <= 2017; i++) {
|
|
|
years.add(String.valueOf(i));
|
|
|
}
|
|
|
for (int i = 1; i <= 12; i++) {
|
|
|
@@ -245,8 +244,6 @@ public class OASigninPicker extends WheelPicker {
|
|
|
this.yearLabel = yearLabel;
|
|
|
this.monthLabel = monthLabel;
|
|
|
this.dayLabel = dayLabel;
|
|
|
- this.hourLabel = hourLabel;
|
|
|
- this.minuteLabel = minuteLabel;
|
|
|
}
|
|
|
|
|
|
|