Blame view

src/com/fourmob/datetimepicker/date/DayPickerView.java 8.29 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
  package com.fourmob.datetimepicker.date;
  
  import android.annotation.TargetApi;
  import android.content.Context;
  import android.os.Build;
  import android.os.Handler;
  import android.view.View;
  import android.view.ViewConfiguration;
  import android.widget.AbsListView;
  import android.widget.ListView;
  
  public class DayPickerView extends ListView implements AbsListView.OnScrollListener, DatePickerDialog.OnDateChangedListener {
  
      protected static final int GOTO_SCROLL_DURATION = 250;
      protected static final int SCROLL_CHANGE_DELAY = 40;
  
      public static int LIST_TOP_OFFSET = -1;
  
      protected Context mContext;
      protected Handler mHandler = new Handler();
  
  	protected SimpleMonthAdapter mAdapter;
  	private final DatePickerController mController;
  
      protected int mCurrentMonthDisplayed;
      protected int mCurrentScrollState = 0;
  	private boolean mPerformingScroll;
  	protected long mPreviousScrollPosition;
  	protected int mPreviousScrollState = 0;
  
  	protected ScrollStateRunnable mScrollStateChangedRunnable = new ScrollStateRunnable();
  	protected SimpleMonthAdapter.CalendarDay mSelectedDay = new SimpleMonthAdapter.CalendarDay();
  	protected SimpleMonthAdapter.CalendarDay mTempDay = new SimpleMonthAdapter.CalendarDay();
  
      protected int mNumWeeks = 6;
      protected boolean mShowWeekNumber = false;
      protected int mDaysPerWeek = 7;
  
      protected float mFriction = 1.0F;
  
  	public DayPickerView(Context context, DatePickerController datePickerController) {
  		super(context);
  		mController = datePickerController;
  		mController.registerOnDateChangedListener(this);
  		setLayoutParams(new AbsListView.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
  		setDrawSelectorOnTop(false);
  		init(context);
  		onDateChanged();
  	}
  
  	public int getMostVisiblePosition() {
          final int firstPosition = getFirstVisiblePosition();
          final int height = getHeight();
  
          int maxDisplayedHeight = 0;
          int mostVisibleIndex = 0;
          int i=0;
          int bottom = 0;
          while (bottom < height) {
              View child = getChildAt(i);
              if (child == null) {
                  break;
              }
              bottom = child.getBottom();
              int displayedHeight = Math.min(bottom, height) - Math.max(0, child.getTop());
              if (displayedHeight > maxDisplayedHeight) {
                  mostVisibleIndex = i;
                  maxDisplayedHeight = displayedHeight;
              }
              i++;
          }
          return firstPosition + mostVisibleIndex;
  	}
  
  	public boolean goTo(SimpleMonthAdapter.CalendarDay day, boolean animate, boolean setSelected, boolean forceScroll) {
          // Set the selected day
          if (setSelected) {
              mSelectedDay.set(day);
          }
  
          mTempDay.set(day);
          final int position = (day.year - mController.getMinYear())
                  * SimpleMonthAdapter.MONTHS_IN_YEAR + day.month;
  
          View child;
          int i = 0;
          int top = 0;
          // Find a child that's completely in the view
          do {
              child = getChildAt(i++);
              if (child == null) {
                  break;
              }
              top = child.getTop();
          } while (top < 0);
  
          // Compute the first and last position visible
          int selectedPosition;
          if (child != null) {
              selectedPosition = getPositionForView(child);
          } else {
              selectedPosition = 0;
          }
  
          if (setSelected) {
              mAdapter.setSelectedDay(mSelectedDay);
          }
  
          // Check if the selected day is now outside of our visible range
          // and if so scroll to the month that contains it
          if (position != selectedPosition || forceScroll) {
              setMonthDisplayed(mTempDay);
              mPreviousScrollState = OnScrollListener.SCROLL_STATE_FLING;
              if (animate && Build.VERSION.SDK_INT >= 11) {
                  smoothScrollToPositionFromTop(position, LIST_TOP_OFFSET, GOTO_SCROLL_DURATION);
                  return true;
              } else {
                  postSetSelection(position);
              }
          } else if (setSelected) {
              setMonthDisplayed(mSelectedDay);
          }
          return false;
  	}
  
  	public void init(Context paramContext) {
  		mContext = paramContext;
  		setUpListView();
  		setUpAdapter();
  		setAdapter(mAdapter);
  	}
  
  	protected void layoutChildren() {
  		super.layoutChildren();
  		if (mPerformingScroll) {
  			mPerformingScroll = false;
  		}
  	}
  
  	public void onChange() {
  		setUpAdapter();
  		setAdapter(mAdapter);
  	}
  
  	public void onDateChanged() {
  		goTo(mController.getSelectedDay(), false, true, true);
  	}
  
  	public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
          SimpleMonthView child = (SimpleMonthView) view.getChildAt(0);
          if (child == null) {
              return;
          }
  
          // Figure out where we are
          long currScroll = view.getFirstVisiblePosition() * child.getHeight() - child.getBottom();
          mPreviousScrollPosition = currScroll;
          mPreviousScrollState = mCurrentScrollState;
  	}
  
  	public void onScrollStateChanged(AbsListView absListView, int scroll) {
  		mScrollStateChangedRunnable.doScrollStateChange(absListView, scroll);
  	}
  
  	public void postSetSelection(final int position) {
  		clearFocus();
  		post(new Runnable() {
  			public void run() {
  				DayPickerView.this.setSelection(position);
  			}
  		});
  		onScrollStateChanged(this, 0);
  	}
  
  	protected void setMonthDisplayed(SimpleMonthAdapter.CalendarDay calendarDay) {
  		this.mCurrentMonthDisplayed = calendarDay.month;
  		invalidateViews();
  	}
  
  	protected void setUpAdapter() {
  		if (mAdapter == null) {
  			mAdapter = new SimpleMonthAdapter(getContext(), mController);
          }
  		mAdapter.setSelectedDay(this.mSelectedDay);
  		mAdapter.notifyDataSetChanged();
  	}
  
  	protected void setUpListView() {
  		setCacheColorHint(0);
  		setDivider(null);
  		setItemsCanFocus(true);
  		setFastScrollEnabled(false);
  		setVerticalScrollBarEnabled(false);
  		setOnScrollListener(this);
  		setFadingEdgeLength(0);
  		setFrictionIfSupported(ViewConfiguration.getScrollFriction() * mFriction);
  	}
  
  	@TargetApi(Build.VERSION_CODES.HONEYCOMB)
  	void setFrictionIfSupported(float friction) {
  		if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
  			setFriction(friction);
  		}
  	}
  
      protected class ScrollStateRunnable implements Runnable {
          private int mNewState;
  
          /**
           * Sets up the runnable with a short delay in case the scroll state
           * immediately changes again.
           *
           * @param view The list view that changed state
           * @param scrollState The new state it changed to
           */
          public void doScrollStateChange(AbsListView view, int scrollState) {
              mHandler.removeCallbacks(this);
              mNewState = scrollState;
              mHandler.postDelayed(this, SCROLL_CHANGE_DELAY);
          }
  
          @Override
          public void run() {
              mCurrentScrollState = mNewState;
              // Fix the position after a scroll or a fling ends
              if (mNewState == OnScrollListener.SCROLL_STATE_IDLE
                      && mPreviousScrollState != OnScrollListener.SCROLL_STATE_IDLE
                      && mPreviousScrollState != OnScrollListener.SCROLL_STATE_TOUCH_SCROLL) {
                  mPreviousScrollState = mNewState;
                  int i = 0;
                  View child = getChildAt(i);
                  while (child != null && child.getBottom() <= 0) {
                      child = getChildAt(++i);
                  }
                  if (child == null) {
                      // The view is no longer visible, just return
                      return;
                  }
                  int firstPosition = getFirstVisiblePosition();
                  int lastPosition = getLastVisiblePosition();
                  boolean scroll = firstPosition != 0 && lastPosition != getCount() - 1;
                  final int top = child.getTop();
                  final int bottom = child.getBottom();
                  final int midpoint = getHeight() / 2;
                  if (scroll && top < LIST_TOP_OFFSET) {
                      if (bottom > midpoint) {
                          smoothScrollBy(top, GOTO_SCROLL_DURATION);
                      } else {
                          smoothScrollBy(bottom, GOTO_SCROLL_DURATION);
                      }
                  }
              } else {
                  mPreviousScrollState = mNewState;
              }
          }
      }
  
  }