android开源下拉刷新控件PullToRefreshLayout修正BUG

PullToRefreshLayout.java

001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
import android.content.Context;
import android.text.Html;
import android.util.AttributeSet;
import android.view.GestureDetector;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.animation.LinearInterpolator;
import android.view.animation.RotateAnimation;
import android.widget.AdapterView;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.Scroller;
import android.widget.TextView;
 
 
public class PullToRefreshLayout extends FrameLayout implements
         GestureDetector.OnGestureListener {
     public static final int STATE_CLOSE = 1 ;
     public static final int STATE_OPEN = 2 ;
     public static final int STATE_OPEN_MAX = 4 ;
     public static final int STATE_OPEN_MAX_RELEASE = 5 ;
     public static final int STATE_OPEN_RELEASE = 3 ;
     public static final int STATE_UPDATE = 6 ;
     public static final int STATE_UPDATE_SCROLL = 7 ;
     private static int MAXHEIGHT = 80 ;
 
     private ImageView mArrow;
     private String mDate;
     private GestureDetector mDetector;
     private Flinger mFlinger;
     private boolean mIsAutoScroller;
     private int mPading;
     private ProgressBar mProgressBar;
     private int mState;
     private TextView mTitle;
     private FrameLayout mUpdateContent;
 
     private UpdateHandle mUpdateHandle;
 
     private RotateAnimation mFlipAnimation;
     private RotateAnimation mReverseFlipAnimation;
 
     private String tag = "<font color=\"#666666\"><b><big>" ;
     private String end_tag = "</font></b></big><br/>" ;
     private String relese;
     private String pulldown;
     private String loadding;
     private String last_time;
 
     private boolean mIsOpen = true ;
 
     public PullToRefreshLayout(Context context, AttributeSet attrs) {
         super (context, attrs);
         relese = genString( "释放立即刷新" );
         pulldown = genString( "下拉刷新" );
         loadding = genString( "正在刷新,请稍后..." );
         last_time = "上次刷新时间:" ;
         addUpdateBar();
         init();
     }
 
     private String genString(String text) {
         StringBuffer buffer = new StringBuffer(tag);
         buffer.append(text);
         buffer.append(end_tag);
         return buffer.toString();
     }
 
     @Override
     public boolean dispatchTouchEvent(MotionEvent ev) {
         boolean isAuto = mIsAutoScroller;
         mDetector.onTouchEvent(ev);
         switch (ev.getAction()) {
         case MotionEvent.ACTION_MOVE:
             int y = getChildAt( 1 ).getTop();
             if (y != 0 ) {
                 updateView();
             }
             break ;
         case MotionEvent.ACTION_UP:
             if (mState == STATE_OPEN) {
                 mState = STATE_OPEN_RELEASE;
             }
             if (mState == STATE_OPEN_MAX) {
                 mState = STATE_OPEN_MAX_RELEASE;
             }
             release();
             break ;
         }
         if (mState != STATE_UPDATE) {
             isAuto = super .dispatchTouchEvent(ev);
         } else {
             return super .dispatchTouchEvent(ev);
         }
         int y = getChildAt( 1 ).getTop();
         if (y != 0 ) {
             ev.setAction(MotionEvent.ACTION_CANCEL);
             super .dispatchTouchEvent(ev);
             updateView();
         }
         return isAuto;
     }
 
     private void init() {
         mDetector = new GestureDetector( this );
         mFlinger = new Flinger(getContext());
         mState = STATE_CLOSE;
         setDrawingCacheEnabled( true );
         setClipChildren( true );
         mDetector.setIsLongpressEnabled( false );
         MAXHEIGHT = ( int ) getContext().getResources().getDimension(
                 R.dimen.size_updatebar_content_height);
     }
 
     private void updateView() {
         View view1 = getChildAt( 0 );
         View view2 = getChildAt( 1 );
         if (mDate == null )
             mDate = "" ;
         switch (mState) {
         case STATE_CLOSE:
             if (view1.getVisibility() != View.INVISIBLE)
                 view1.setVisibility(View.INVISIBLE);
         case STATE_OPEN:
         case STATE_OPEN_RELEASE: {
             // STATE_OPEN
             int offset = -mPading - view2.getTop();
             view2.offsetTopAndBottom(offset);
             if (view1.getVisibility() != View.VISIBLE)
                 view1.setVisibility(View.VISIBLE);
             int y1 = view1.getTop(); // 相对于父窗口的顶部大小
             offset = -MAXHEIGHT - mPading - y1;
             view1.offsetTopAndBottom(offset);
             StringBuilder builder = new StringBuilder(pulldown);
             builder.append(last_time);
             builder.append(mDate);
             mTitle.setText(Html.fromHtml(builder.toString()));
             mProgressBar.setVisibility(View.INVISIBLE);
             mArrow.setVisibility(View.VISIBLE);
             if (!mIsOpen) {
                 mIsOpen = true ;
                 mArrow.setAnimation(mReverseFlipAnimation);
                 mReverseFlipAnimation.start();
             }
             break ;
         }
         case STATE_OPEN_MAX_RELEASE:
         case STATE_OPEN_MAX: {
             int offset = -mPading - view2.getTop();
             view2.offsetTopAndBottom(offset);
             if (view1.getVisibility() != View.VISIBLE)
                 view1.setVisibility(View.VISIBLE);
             offset = -MAXHEIGHT - mPading - view1.getTop();
             view1.offsetTopAndBottom(offset);
             StringBuilder builder = new StringBuilder(relese);
             builder.append(last_time);
             builder.append(mDate);
             mTitle.setText(Html.fromHtml(builder.toString()));
             mProgressBar.setVisibility(View.INVISIBLE);
             mArrow.setVisibility(View.VISIBLE);
             if (mIsOpen) {
                 mIsOpen = false ;
                 mArrow.setAnimation(mFlipAnimation);
                 mFlipAnimation.start();
             }
             break ;
         }
         case STATE_UPDATE:
         // STATE_UPDATE
         {
             int offset = -mPading - view2.getTop();
             view2.offsetTopAndBottom(offset);
             if (mProgressBar.getVisibility() != View.VISIBLE)
                 mProgressBar.setVisibility(View.VISIBLE);
             if (mArrow.getVisibility() != View.INVISIBLE)
                 mArrow.setVisibility(View.INVISIBLE);
             StringBuffer builder = new StringBuffer(loadding);
             builder.append(last_time);
             builder.append(mDate);
             mTitle.setText(Html.fromHtml(builder.toString()));
             offset = -MAXHEIGHT - mPading - view1.getTop();
             view1.offsetTopAndBottom(offset);
             if (view1.getVisibility() != View.VISIBLE)
                 view1.setVisibility(View.VISIBLE);
             mProgressBar.setVisibility(View.VISIBLE);
             mArrow.setVisibility(View.GONE);
             mArrow.clearAnimation();
             break ;
         }
         }
         invalidate();
     }
 
     private void addUpdateBar() {
         Context context = getContext();
         mFlipAnimation = new RotateAnimation( 0 , - 180 ,
                 RotateAnimation.RELATIVE_TO_SELF, 0 .5f,
                 RotateAnimation.RELATIVE_TO_SELF, 0 .5f);
         mFlipAnimation.setInterpolator( new LinearInterpolator());
         mFlipAnimation.setDuration( 200 );
         mFlipAnimation.setFillAfter( true );
         mReverseFlipAnimation = new RotateAnimation(- 180 , 0 ,
                 RotateAnimation.RELATIVE_TO_SELF, 0 .5f,
                 RotateAnimation.RELATIVE_TO_SELF, 0 .5f);
         mReverseFlipAnimation.setInterpolator( new LinearInterpolator());
         mReverseFlipAnimation.setDuration( 200 );
         mReverseFlipAnimation.setFillAfter( true );
         View view = LayoutInflater.from(context).inflate(
                 R.layout.vw_update_bar, null );
         view.setVisibility(View.INVISIBLE);
         addView(view);
         mArrow = new ImageView(context);
         FrameLayout.LayoutParams mArrowParams = new FrameLayout.LayoutParams(
                 FrameLayout.LayoutParams.FILL_PARENT,
                 FrameLayout.LayoutParams.FILL_PARENT);
         ImageView.ScaleType localScaleType = ImageView.ScaleType.FIT_CENTER;
         mArrow.setScaleType(localScaleType);
         mArrow.setLayoutParams(mArrowParams);
         mArrow.setImageResource(R.drawable.arrow_down);
         mUpdateContent = (FrameLayout) getChildAt( 0 ).findViewById(
                 R.id.iv_content);
         mUpdateContent.addView(mArrow);
         FrameLayout.LayoutParams mProgressBarParams = new FrameLayout.LayoutParams(
                 FrameLayout.LayoutParams.FILL_PARENT,
                 FrameLayout.LayoutParams.FILL_PARENT);
         mProgressBarParams.gravity = Gravity.CENTER_VERTICAL;
         mProgressBar = new ProgressBar(context);
         int padding = getResources().getDimensionPixelSize(
                 R.dimen.size_updatebar_padding);
         mProgressBar.setPadding(padding, padding, padding, padding);
         mProgressBar.setLayoutParams(mProgressBarParams);
         mUpdateContent.addView(mProgressBar);
         mTitle = (TextView) findViewById(R.id.tv_title);
     }
 
     @Override
     protected void onLayout( boolean changed, int left, int top, int right,
             int bottom) {
         // TODO Auto-generated method stub
         int mtop = -MAXHEIGHT - mPading;
         getChildAt( 0 ).layout( 0 , mtop, getMeasuredWidth(), -mPading);
         int mbottom = getMeasuredHeight() - mPading;
         getChildAt( 1 ).layout( 0 , -mPading, getMeasuredWidth(), mbottom);
     }
 
     public void endUpdate(String timeFomat) {
         mDate = timeFomat;
         if (mPading != 0 ) {
             mState = STATE_CLOSE;
             scrollToClose();
         }
     }
 
     @Override
     public void onShowPress(MotionEvent e) {
         // TODO Auto-generated method stub
 
     }
 
     @Override
     public void onLongPress(MotionEvent e) {
         // TODO Auto-generated method stub
 
     }
 
     @Override
     public boolean onDown(MotionEvent e) {
         return false ;
     }
 
     @Override
     public boolean onSingleTapUp(MotionEvent e) {
         return false ;
     }
 
     @Override
     public boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX,
             float distanceY) {
         AdapterView<?> adapterView = (AdapterView<?>) getChildAt( 1 );
         int k = adapterView.getCount();
         if (k == 0 )
             return false ;
         k = adapterView.getFirstVisiblePosition(); // 获取第一个显示项目的position
         if (k == 0 ) {
             int t = adapterView.getChildAt( 0 ).getTop();
             if (t != 0 ) {
                 return false ;
             } else {
                 mPading = ( int ) (mPading + distanceY / 2 );
                 if (mPading > 0 )
                     mPading = 0 ;
                 if (Math.abs(mPading) <= MAXHEIGHT) {
                     mState = STATE_OPEN;
                 } else {
                     mState = STATE_OPEN_MAX;
                 }
                 updateView();
             }
         }
         return false ;
     }
 
     @Override
     public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
             float velocityY) {
         return false ;
     }
 
     private boolean release() {
         int tempStatus = STATE_OPEN_MAX_RELEASE;
         if (mPading >= 0 ) {
             return true ;
         }
         switch (mState) {
         case STATE_OPEN_RELEASE:
             if (Math.abs(mPading) < MAXHEIGHT) {
                 tempStatus = STATE_OPEN_MAX_RELEASE;
                 mState = tempStatus;
             }
             scrollToClose();
             break ;
         case STATE_OPEN_MAX_RELEASE:
             mState = tempStatus;
             scrollToUpdate();
             break ;
         }
         return false ;
     }
 
     private void scrollToClose() {
         mFlinger.startUsingDistance(-mPading, 2000 );
     }
 
     private void scrollToUpdate() {
         mFlinger.startUsingDistance(-mPading - MAXHEIGHT, 1000 );
     }
 
     class Flinger implements Runnable {
         private int mLastFlingX;
         private Scroller mScroller;
 
         public Flinger(Context context) {
             mScroller = new Scroller(context);
         }
 
         private void startCommon() {
             removeCallbacks( this );
         }
 
         public void run() {
             boolean auto = Math.abs(mPading) != MAXHEIGHT;
             boolean compute = mScroller.computeScrollOffset();
             move(mLastFlingX - mScroller.getCurrX(), auto);
             updateView();
             if (compute) {
                 mLastFlingX = mScroller.getCurrX();
                 post( this );
             } else {
                 mIsAutoScroller = auto;
                 removeCallbacks( this );
             }
         }
 
         public void startUsingDistance( int padding, int duration) {
             int i = 0 ;
             if (padding == 0 )
                 padding = - 1 ;
             startCommon();
             mLastFlingX = i;
             mScroller.startScroll(i, 0 , -padding, 0 , duration);
             mIsAutoScroller = true ;
             post( this );
         }
     }
 
     /**
      * 释放的时候使用
      */
     public void move( float f, boolean bool) {
         if (mState != STATE_CLOSE) {
             if (!bool) {
                 // 刷新
                 if (mState == STATE_OPEN_MAX_RELEASE) {
                     mState = STATE_UPDATE;
                     if (mUpdateHandle != null ) {
                         mUpdateHandle.onUpdate();
                     }
                 }
             }
             if (mState == STATE_OPEN_MAX_RELEASE
                     || mState == STATE_OPEN_RELEASE) {
                 mPading += f;
             }
         } else {
             if (mIsAutoScroller) {
                 mPading += f;
             }
         }
     }
 
     public abstract interface UpdateHandle {
         public abstract void onUpdate();
     }
 
     public void setUpdateDate(String timeFomat) {
         mDate = timeFomat;
     }
 
     public void setUpdateHandle(UpdateHandle paramUpdateHandle) {
         mUpdateHandle = paramUpdateHandle;
     }
 
     public void updateWithoutOffset() {
         mState = STATE_UPDATE_SCROLL;
         invalidate();
     }
}

vw_update_bar.xml

01
02
03
04
05
06
07
08
09
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
<?xml version= "1.0" encoding= "utf-8" ?>
<LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"
     android:layout_width= "match_parent"
     android:layout_height= "@dimen/size_updatebar_padding"
     android:background= "#FFF4F4F4"
     android:orientation= "vertical" >
 
     <FrameLayout
         android:layout_width= "match_parent"
         android:layout_height= "@dimen/size_updatebar_content_height"
         android:background= "#FFF4F4F4" >
 
         <TextView
             android:id= "@+id/tv_title"
             android:layout_width= "match_parent"
             android:layout_height= "wrap_content"
             android:layout_gravity= "center_vertical"
             android:background= "#FFF4F4F4"
             android:gravity= "center"
             android:textSize= "12sp" >
         </TextView>
 
         <FrameLayout
             android:id= "@+id/iv_content"
             android:layout_width= "wrap_content"
             android:layout_height= "wrap_content"
             android:layout_gravity= "center_vertical"
             android:layout_marginLeft= "15.0dip" >
         </FrameLayout>
     </FrameLayout>
 
     <ImageView
         android:layout_width= "fill_parent"
         android:layout_height= "1.0dip"
         android:contentDescription= "@string/app_name"
         android:scaleType= "fitXY"
         android:src= "@drawable/divider_horizontal_timeline" >
     </ImageView>
 
</LinearLayout>

demens文件

1
2
<dimen name= "size_updatebar_content_height" >48dp</dimen>
<dimen name= "size_updatebar_padding" >12dp</dimen>

使用方法:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
refreshLayout = (PullToRefreshLayout) findViewById(R.id.pull_refresh);
refreshLayout.setUpdateHandle( new UpdateHandle() {
 
     @Override
     public void onUpdate() {
         // TODO Auto-generated method stub
         new TaskThread() {
 
             @Override
             public void process() throws Exception {
                 // TODO Auto-generated method stub
                 sleep( 3000 );
                 refreshLayout.endUpdate(Tools.newDateTime());
             }
         }.start();
     }
});

布局代码:

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
<com.PullToRefreshLayout
     android:id= "@+id/pull_refresh"
     android:layout_width= "match_parent"
     android:layout_height= "wrap_content" >
 
     <ExpandableListView
         android:id= "@+id/expand_list"
         android:layout_width= "match_parent"
         android:layout_height= "match_parent"
         android:cacheColorHint= "@null"
         android:groupIndicator= "@null"
         android:listSelector= "@drawable/default_selector"
         android:scrollbars= "none" >
     </ExpandableListView>
</com.PullToRefreshLayout>

效果图:

QQ截图20150402155239

转载于:https://www.cnblogs.com/yunxiu/p/4586700.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值