服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - android实现简单左滑删除控件

android实现简单左滑删除控件

2022-10-28 13:52qq_20352713 Android

这篇文章主要为大家详细介绍了android实现一个简单左滑删除控件,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文为大家分享了一个简单的android左滑删除控件,供大家参考,具体内容如下

?
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
import android.animation.ValueAnimator;
import android.content.Context;
import android.graphics.PointF;
import android.support.v4.view.ViewConfigurationCompat;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewConfiguration;
import android.view.ViewGroup;
 
public class SwipeLayout extends ViewGroup{
 public static String TAG = "SwipeLayout";
 
 //可以滚动的距离
 int mSwipeWidth;
 
 
 PointF firstPoint;
 PointF lastPoint;
 
 float mTouchSlop;
 
 ValueAnimator openAnimator;
 ValueAnimator closeAnimator;
 
 public SwipeLayout(Context context) {
 this(context,null);
 }
 
 public SwipeLayout(Context context, AttributeSet attrs) {
 super(context, attrs);
 mTouchSlop = ViewConfigurationCompat.getScaledPagingTouchSlop(ViewConfiguration.get(getContext()));
 }
 
 
 
 @Override
 protected void onLayout(boolean changed, int l, int t, int r, int b) {
 int left=0;
 int childCount = getChildCount();
 
 for (int i=0;i<childCount;++i){
  View child = getChildAt(i);
 
  //按顺序从左往右排
//  if (i==0){
//  child.layout(0,0,child.getMeasuredWidth(),child.getMeasuredHeight());
//  }else {
  child.layout(left,0,left+child.getMeasuredWidth(),child.getMeasuredHeight());
//  }
  left += child.getMeasuredWidth();
 }
 
 
 }
 
 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
 super.onMeasure(widthMeasureSpec, heightMeasureSpec);
 int childCount = getChildCount();
 View mainChild = getChildAt(0);
 int width=0;
 int height=0;
 mSwipeWidth = 0;
// measureChild(mainChild,widthMeasureSpec,heightMeasureSpec);
 measure(widthMeasureSpec,heightMeasureSpec);
 
 //滑动距离是 从index开始 所有控件的宽度之和
 if (childCount>1) {
  for (int i = 1; i < childCount; ++i) {
  mSwipeWidth += getChildAt(i).getMeasuredWidth();
  }
 }
 
 
 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
 int widthValue = MeasureSpec.getSize(widthMeasureSpec);
 int heightMode = MeasureSpec.getMode(heightMeasureSpec);
 int heightValue = MeasureSpec.getSize(heightMeasureSpec);
 
 switch (heightMode){
  case MeasureSpec.AT_MOST:
  case MeasureSpec.UNSPECIFIED:
  //没有指定大小 按照第一个子控件的大小来设置
  height = mainChild.getMeasuredHeight();
  break;
  case MeasureSpec.EXACTLY:
  height = heightValue;
  break;
 }
 switch (widthMode){
  case MeasureSpec.AT_MOST:
  case MeasureSpec.UNSPECIFIED:
  //没有指定大小 按照第一个子控件的大小来设置
  width = mainChild.getMeasuredWidth();
  break;
  case MeasureSpec.EXACTLY:
  width = widthValue;
  break;
 }
 
// for (int i=1;i<childCount;++i){
//  measureChild(getChildAt(i),widthMeasureSpec,MeasureSpec.makeMeasureSpec(height,MeasureSpec.EXACTLY));
// }
 setMeasuredDimension(width,height);
 }
 
 
 @Override
 public boolean dispatchTouchEvent(MotionEvent ev) {
 return super.dispatchTouchEvent(ev);
 }
 
 @Override
 public boolean onInterceptTouchEvent(MotionEvent ev) {
  switch (ev.getAction()){
  case MotionEvent.ACTION_DOWN:
  firstPoint = new PointF(ev.getX(),ev.getY());
  lastPoint = new PointF(ev.getX(),ev.getY());
  break;
  case MotionEvent.ACTION_MOVE:
  float moveDistance = ev.getX()-firstPoint.x;
 
  //移动距离大于制定值 认为进入控件的滑动模式
  if (Math.abs(moveDistance) > mTouchSlop ){
   //让父控件不拦截我们的事件
   getParent().requestDisallowInterceptTouchEvent(true);
   //拦截事件
   return true;
  }
 
 }
 return super.onInterceptTouchEvent(ev);
 }
 
 @Override
 public boolean onTouchEvent(MotionEvent ev) {
 switch (ev.getAction()){
  case MotionEvent.ACTION_MOVE:
  float moveDistance = ev.getX()-lastPoint.x;
  lastPoint = new PointF(ev.getX(),ev.getY());
 
  // 这里要注意 x大于0的时候 往左滑动 小于0往右滑动
  scrollBy((int) -moveDistance ,0);
 
  //边界判定 超过了边界 直接设置为边界值
  if (getScrollX()> mSwipeWidth){
   scrollTo(mSwipeWidth,0);
  }else if (getScrollX()<0){
   scrollTo(0,0);
  }
  break;
  case MotionEvent.ACTION_UP:
  //没动 不理他
  if (getScrollX()== mSwipeWidth ||getScrollX()==0){
   return false;
  }
   float distance = ev.getX()-firstPoint.x;
  //滑动距离超过 可滑动距离指定值 继续完成滑动
   if (Math.abs(distance) > mSwipeWidth *0.3 ){
   if (distance>0){
    smoothClose();
   }else if (distance<0){
    smoothOpen();
   }
   }else {
   if (distance>0){
    smoothOpen();
 
   }else if (distance<0){
    smoothClose();
   }
   }
   return true;
 }
 
 return super.onTouchEvent(ev);
 }
 
 public void smoothOpen(){
 
 clearAnimator();
 openAnimator = ValueAnimator.ofInt(getScrollX(), mSwipeWidth);
 openAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
  @Override
  public void onAnimationUpdate(ValueAnimator animation) {
  Integer integer = (Integer) animation.getAnimatedValue();
  scrollTo(integer,0);
  }
 });
 openAnimator.start();
 }
 public void smoothClose(){
 clearAnimator();
 closeAnimator = ValueAnimator.ofInt(getScrollX(),0);
 closeAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
  @Override
  public void onAnimationUpdate(ValueAnimator animation) {
  Integer integer = (Integer) animation.getAnimatedValue();
  scrollTo(integer,0);
  }
 });
 closeAnimator.start();
 
 }
 
 public void open(){
 scrollTo(mSwipeWidth,0);
 }
 public void close(){
 scrollTo(0,0);
 
 }
//执行滑动动画必须先清除动画 不然会鬼畜
 private void clearAnimator(){
 if (closeAnimator!=null && closeAnimator.isRunning()){
  closeAnimator.cancel();
  closeAnimator = null;
 }
 if (openAnimator!=null && openAnimator.isRunning()) {
  openAnimator.cancel();
  openAnimator = null;
 }
 }
 
 public void toggle(){
 if (getScrollX()==0){
  open();
 }else {
  close();
 }
 }
 
}

使用

?
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
<com.example.chenweiqi.simplerefreshview.widget.SwipeLayout
 android:id="@+id/swipeLayout"
 android:layout_width="200dp"
 android:layout_height="wrap_content"
 android:background="#F3F3F3"
>
<Button
 android:id="@+id/btn"
 android:text="123"
 android:layout_width="match_parent"
 android:layout_height="50dp" />
 
<Button
 android:background="#FF0000"
 android:text="shanchu"
 android:layout_width="80dp"
 android:layout_height="match_parent" />
<TextView
 android:gravity="center"
 android:textAlignment="center"
 android:background="#0F0"
 android:text="123"
 android:layout_width="30dp"
 android:layout_height="match_parent" />
</com.example.chenweiqi.simplerefreshview.widget.SwipeLayout>

效果

android实现简单左滑删除控件

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_20352713/article/details/85063628

延伸 · 阅读

精彩推荐