欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android中使用Activity实现监听手指上下左右滑动

程序员文章站 2022-04-30 22:44:20
用activity的ontouchevent方法实现监听手指上下左右滑动 应用了activity的ontouchevent方法监听手指点击事件,手指滑动的时候会先按下...

用activity的ontouchevent方法实现监听手指上下左右滑动

android中使用Activity实现监听手指上下左右滑动

应用了activity的ontouchevent方法监听手指点击事件,手指滑动的时候会先按下,滑倒另一个地方再抬起,我们就可以根据按下的坐标和抬起的坐标算出用户是往哪一个方向滑动了。

package com.example.testtt;

import android.app.activity;
import android.os.bundle;
import android.view.motionevent;
import android.widget.toast;

public class mainactivity extends activity {
 //手指按下的点为(x1, y1)手指离开屏幕的点为(x2, y2)
 float x1 = 0;
 float x2 = 0;
 float y1 = 0;
 float y2 = 0;
 
 @override
 protected void oncreate(bundle savedinstancestate) {
 super.oncreate(savedinstancestate);
 setcontentview(r.layout.activity_main);
 }
 
 @override
 public boolean ontouchevent(motionevent event) {
 //继承了activity的ontouchevent方法,直接监听点击事件
 if(event.getaction() == motionevent.action_down) {
  //当手指按下的时候
  x1 = event.getx();
  y1 = event.gety();
 }
 if(event.getaction() == motionevent.action_up) {
  //当手指离开的时候
  x2 = event.getx();
  y2 = event.gety();
  if(y1 - y2 > 50) {
  toast.maketext(mainactivity.this, "向上滑", toast.length_short).show();
  } else if(y2 - y1 > 50) {
  toast.maketext(mainactivity.this, "向下滑", toast.length_short).show();
  } else if(x1 - x2 > 50) {
  toast.maketext(mainactivity.this, "向左滑", toast.length_short).show();
  } else if(x2 - x1 > 50) {
  toast.maketext(mainactivity.this, "向右滑", toast.length_short).show();
  }
 }
 return super.ontouchevent(event);
 }
 
 
}