服务器之家

服务器之家 > 正文

Android中SwipeBack实现右滑返回效果

时间:2021-05-24 18:01     来源/作者:_jerry_min_

现在有很多app支持右滑返回,比如知乎,效果比较赞。

Android中SwipeBack实现右滑返回效果

于是自己对activity和fragment进行了继承,派生出swipebackactivity和swipebackfragment,用于对这种效果的实现,也就是只要继承这两个类就可以了。

效果如下

  • activity

Android中SwipeBack实现右滑返回效果

fragment

 

frgament的效果实现比activity稍微简单,因为activity要考虑到dectorview。

支持滑动的控件swipelayout,核心思路就是把原有的控件添加到支持滑动的控件中,swipelayout要注意计算手势速度,源码如下:

Android中SwipeBack实现右滑返回效果

?
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package com.ui.jerry.swipebackdemo;
 
import android.content.context;
import android.util.attributeset;
import android.util.log;
import android.view.layoutinflater;
import android.view.motionevent;
import android.view.velocitytracker;
import android.view.view;
import android.view.viewconfiguration;
import android.view.viewgroup;
import android.widget.linearlayout;
import android.widget.scroller;
import android.widget.toast;
 
 
public class swipelayout extends linearlayout {
  public static final string tag = "swipelayout";
 
  private view memptyview;
  private view mcontentview;
 
  private int mleftedge;
  private int mwidth;
  private int mmaxscrollx;
 
  private scroller mscroller;
  private velocitytracker mvelocitytracker = null;
  private int mmaxflingvelocity;
  private int mlastx;
 
  viewgroup.layoutparams childparams = new viewgroup.layoutparams(viewgroup.layoutparams.match_parent, viewgroup.layoutparams.match_parent);
 
  private context mcontext;
  public static final int duration = 1500//满屏滑动时间
  public static final int open_anim_duration = 1000;
  public static int snap_velocity = 600; //最小的滑动速率
 
  private onfinishlistener monfinishlistener;
 
  public swipelayout(context context) {
    this(context, null);
  }
 
  public swipelayout(context context, attributeset attrs) {
    super(context, attrs);
 
    mcontext = context;
    init();
  }
 
  public void setonfinishlistener(onfinishlistener monfinishlistener) {
    this.monfinishlistener = monfinishlistener;
  }
 
  void init() {
    mscroller = new scroller(mcontext);
    mmaxflingvelocity = viewconfiguration.get(mcontext).getscaledmaximumflingvelocity();
 
    mwidth = displayutils.getscreenwidth(mcontext) * 2;
    mmaxscrollx = mwidth / 2;
    mleftedge = mmaxscrollx - mmaxscrollx / 3;
 
    setorientation(linearlayout.horizontal);
 
    childparams.width = displayutils.getscreenwidth(mcontext);
 
    memptyview = layoutinflater.from(mcontext).inflate(r.layout.view_translate, null);
 
    addview(memptyview, childparams);
  }
 
  public void setcontentview(view contentview) {
    if (mcontentview != null) {
      removeview(mcontentview);
    }
    mcontentview = contentview;
    addview(contentview, childparams);
 
    postdelayed(new runnable() {
      @override
      public void run() {
        openactivityanimation();
      }
    }, 200);
  }
 
  /**
   * 获取速度追踪器
   *
   * @return
   */
  private velocitytracker getvelocitytracker() {
    if (mvelocitytracker == null) {
      mvelocitytracker = velocitytracker.obtain();
    }
    return mvelocitytracker;
  }
 
  /**
   * 回收速度追踪器
   */
  private void recyclevelocitytracker() {
    if (mvelocitytracker != null) {
      mvelocitytracker.clear();
      mvelocitytracker.recycle();
      mvelocitytracker = null;
    }
  }
 
 
  @override
  public boolean ontouchevent(motionevent ev) {
    //1.获取速度追踪器
    getvelocitytracker();
    //2.将当前事件纳入到追踪器中
    mvelocitytracker.addmovement(ev);
 
    int pointid = -1;
 
    switch (ev.getaction()) {
      case motionevent.action_down:
        //如果屏幕的动画还没结束,你就按下了,我们就结束上一次动画,即开始这次新action_down的动画
//        clearscrollhis();
        mlastx = (int) ev.getx();
        pointid = ev.getpointerid(0);
        break;
      case motionevent.action_move:
        int nextscrollx = (int) (mlastx - ev.getx() + getscrollx());
 
        if (scrollto(nextscrollx)) {
          mlastx = (int) ev.getx();
        }
        break;
      case motionevent.action_cancel:
      case motionevent.action_up:
        //3.计算当前速度
        mvelocitytracker.computecurrentvelocity(1000, mmaxflingvelocity);
        //获取x y方向上的速度
        float vx = mvelocitytracker.getxvelocity(pointid);
 
        log.i(tag, "mvelocityx:" + vx);
 
        //大于某个速率 直接滑动
        if (vx > snap_velocity) {
          scrolltoleft();
        } else if (vx < -snap_velocity) {
          scrolltoright();
        } else {
          snaptodestation();
        }
 
 
        //4.回收速度追踪器
        recyclevelocitytracker();
        break;
    }
    return true;
  }
 
  private void openactivityanimation() {
    clearscrollhis();
    mscroller.startscroll(getscrollx(), 0, mmaxscrollx - getscrollx(), 0, open_anim_duration);
    invalidate();//这里必须调用invalidate()才能保证computescroll()会被调用,否则不一定会刷新界面,看不到滚动效果
  }
 
  public void closeactivityanimation() {
    clearscrollhis();
    mscroller.startscroll(getscrollx(), 0, -getscrollx(), 0, open_anim_duration);
    invalidate();//这里必须调用invalidate()才能保证computescroll()会被调用,否则不一定会刷新界面,看不到滚动效果
  }
 
  private void clearscrollhis() {
    if (mscroller != null) {
      if (!mscroller.isfinished()) {
        mscroller.abortanimation();
      }
    }
  }
 
  /**
   * 根据现在的滚动位置判断
   */
  private void snaptodestation() {
    int scrollx = getscrollx();
    if (scrollx > 0 && scrollx <= mleftedge) {
      smoothscrollto(0);
    } else if (scrollx > mleftedge) {
      smoothscrollto(mmaxscrollx);
    }
  }
 
  /**
   * 直接滚动
   *
   * @param x
   * @return
   */
  public boolean scrollto(int x) {
    if (x < 0) {
      scrollto(0, 0);
    } else if (x > mmaxscrollx) {
      scrollto(mmaxscrollx, 0);
    } else {
      scrollto(x, 0);
    }
    return true;
  }
 
  public void scrolltoright() {
    smoothscrollto(mmaxscrollx);
  }
 
  public void scrolltoleft() {
    smoothscrollto(0);
  }
 
  @override
  protected void onscrollchanged(int l, int t, int oldl, int oldt) {
    super.onscrollchanged(l, t, oldl, oldt);
 
    log.d(tag, "left:" + l);
 
    if (l == 0) {
      log.d(tag, "onfinish");
 
      toast.maketext(mcontext, "finished", toast.length_short).show();
 
      if(monfinishlistener!=null){
        monfinishlistener.onfinish();
      }
    }
  }
 
  public void smoothscrollto(int fx) {
    if (fx < 0) {
      smoothscrollto(0, 0);
    } else if (fx > mmaxscrollx) {
      smoothscrollto(mmaxscrollx, 0);
    } else {
      smoothscrollto(fx, 0);
    }
  }
 
  //  //调用此方法滚动到目标位置
  public void smoothscrollto(int fx, int fy) {
    int dx = fx - getscrollx();
    int dy = fy - getscrolly();
    smoothscrollby(dx, dy);
  }
 
  //调用此方法设置滚动的相对偏移
  public void smoothscrollby(int dx, int dy) {
 
    //设置mscroller的滚动偏移量
    mscroller.startscroll(getscrollx(), 0, dx, dy, math.abs(dx * duration / mmaxscrollx));
    invalidate();//这里必须调用invalidate()才能保证computescroll()会被调用,否则不一定会刷新界面,看不到滚动效果
  }
 
  @override
  public void computescroll() {
 
    //先判断mscroller滚动是否完成
    if (mscroller.computescrolloffset()) {
 
      //这里调用view的scrollto()完成实际的滚动
      scrollto(mscroller.getcurrx(), mscroller.getcurry());
 
      //必须调用该方法,否则不一定能看到滚动效果
      postinvalidate();
    }
    super.computescroll();
  }
 
  /**
   * fragment或者activity 结束的接口
   */
  public interface onfinishlistener{
    void onfinish();
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助。

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部