溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

安卓左右滑動(dòng)事件監(jiān)聽(tīng)

發(fā)布時(shí)間:2020-07-20 19:37:29 來(lái)源:網(wǎng)絡(luò) 閱讀:641 作者:海大易小晨 欄目:移動(dòng)開(kāi)發(fā)
import android.os.Bundle;  
import android.app.Activity;  
import android.content.Context;  
import android.util.Log;  
import android.widget.RelativeLayout;  
  
public class MainActivity extends Activity {  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);//這里的xml是一個(gè)空白的layout  
          
        //需要監(jiān)聽(tīng)左右滑動(dòng)事件的view  
        RelativeLayout view = (RelativeLayout) this.findViewById(R.id.layout);  
          
        //setLongClickable是必須的  
        view.setLongClickable(true);  
        view.setOnTouchListener(new MyGestureListener(this));  
    }  
      
    /** 
     * 繼承GestureListener,重寫left和right方法 
     */  
    private class MyGestureListener extends GestureListener {  
        public MyGestureListener(Context context) {  
            super(context);  
        }  
  
        @Override  
        public boolean left() {  
            Log.e("test", "向左滑");  
            return super.left();  
        }  
  
        @Override  
        public boolean right() {  
            Log.e("test", "向右滑");  
            return super.right();  
        }  
    }  
}  


import android.content.Context;  
import android.view.GestureDetector.SimpleOnGestureListener;  
import android.view.GestureDetector;  
import android.view.View;  
import android.view.View.OnTouchListener;  
import android.view.MotionEvent;  
  
/** 
 * 實(shí)現(xiàn)監(jiān)聽(tīng)左右滑動(dòng)的事件,哪個(gè)view需要的時(shí)候直接setOnTouchListener就可以用了 
 * @author LinZhiquan 
 * 
 */  
public class GestureListener extends SimpleOnGestureListener implements OnTouchListener {  
    /** 左右滑動(dòng)的最短距離 */  
    private int distance = 100;  
    /** 左右滑動(dòng)的最大速度 */  
    private int velocity = 200;  
      
    private GestureDetector gestureDetector;  
      
    public GestureListener(Context context) {  
        super();  
        gestureDetector = new GestureDetector(context, this);  
    }  
  
    /** 
     * 向左滑的時(shí)候調(diào)用的方法,子類應(yīng)該重寫 
     * @return 
     */  
    public boolean left() {  
        return false;  
    }  
      
    /** 
     * 向右滑的時(shí)候調(diào)用的方法,子類應(yīng)該重寫 
     * @return 
     */  
    public boolean right() {  
        return false;  
    }  
      
    @Override  
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,  
            float velocityY) {  
        // TODO Auto-generated method stub  
        // e1:第1個(gè)ACTION_DOWN MotionEvent  
        // e2:最后一個(gè)ACTION_MOVE MotionEvent  
        // velocityX:X軸上的移動(dòng)速度(像素/秒)  
        // velocityY:Y軸上的移動(dòng)速度(像素/秒)  
  
        // 向左滑  
        if (e1.getX() - e2.getX() > distance  
                && Math.abs(velocityX) > velocity) {  
            left();  
        }  
        // 向右滑  
        if (e2.getX() - e1.getX() > distance  
                && Math.abs(velocityX) > velocity) {  
            right();  
        }  
        return false;  
    }  
  
    @Override  
    public boolean onTouch(View v, MotionEvent event) {  
        // TODO Auto-generated method stub  
        gestureDetector.onTouchEvent(event);  
        return false;  
    }  
  
    public int getDistance() {  
        return distance;  
    }  
  
    public void setDistance(int distance) {  
        this.distance = distance;  
    }  
  
    public int getVelocity() {  
        return velocity;  
    }  
  
    public void setVelocity(int velocity) {  
        this.velocity = velocity;  
    }  
  
    public GestureDetector getGestureDetector() {  
        return gestureDetector;  
    }  
  
    public void setGestureDetector(GestureDetector gestureDetector) {  
        this.gestureDetector = gestureDetector;  
    }  
}


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI