91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android GestureDetector實現手勢滑動效果

發布時間:2020-08-31 09:27:32 來源:腳本之家 閱讀:170 作者:Vivinia_Vivinia 欄目:移動開發

本文實例為大家分享了Android GestureDetector實現手勢滑動的具體代碼,供大家參考,具體內容如下

目標效果:

  Android GestureDetector實現手勢滑動效果

程序運行,手指在屏幕上從左往右或者從右往左滑動超過一定距離,就會吐司輸出滑動方向和距離。

1.activity_main.xml頁面放置一個ImageView控件。

activity_main.xml頁面:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainActivity" >
 
  <ImageView
    android:id="@+id/ivShow"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/ic_launcher" />
 
</RelativeLayout>

2.MainActivity.java頁面實現滑動方法。

MainActivity.java頁面:

package com.example.gesturedetector;
 
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.GestureDetector;
import android.view.GestureDetector.SimpleOnGestureListener;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.ImageView;
import android.widget.Toast;
 
public class MainActivity extends Activity {
 
 private ImageView ivShow;
 private GestureDetector gestureDetector;
 
 class myGestureListener extends SimpleOnGestureListener{
 @Override
 /*識別滑動,第一個參數為剛開始事件,第二個參數為結束事件*/
 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
  float velocityY) {
  if(e1.getX()-e2.getX()>50){
  Toast.makeText(MainActivity.this,"從右往左滑動"+(e1.getX()-e2.getX()),Toast.LENGTH_LONG).show();
  }else if(e2.getX()-e1.getX()>50){
  Toast.makeText(MainActivity.this,"從左往右滑動"+(e2.getX()-e1.getX()),Toast.LENGTH_LONG).show();
  }
  return super.onFling(e1, e2, velocityX, velocityY);
 }
 }
 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 
 gestureDetector=new GestureDetector(MainActivity.this,new myGestureListener());
 
 ivShow=(ImageView) findViewById(R.id.ivShow);
 ivShow.setLongClickable(true); //view必須設置為true,否則手勢識別無法正確工作
 ivShow.setOnTouchListener(new OnTouchListener() {
 
  
  /*可以捕獲到觸摸屏幕發生的Event事件*/
  @Override
  public boolean onTouch(View arg0, MotionEvent event) {
  gestureDetector.onTouchEvent(event);//轉發
  return false;
  }
 });
 }
}

3.程序較簡單,運行就可以顯示目標效果了。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新巴尔虎右旗| 南通市| 长乐市| 岢岚县| 财经| 嘉善县| 临漳县| 青田县| 彰武县| 杂多县| 东乡族自治县| 黑龙江省| 罗山县| 五峰| 大关县| 扎兰屯市| 新泰市| 邛崃市| 孟村| 沾益县| 大理市| 屯门区| 栾城县| 科技| 织金县| 天门市| 南阳市| 新建县| 稷山县| 定结县| 博兴县| 青冈县| 安庆市| 大兴区| 涿州市| 宣化县| 永城市| 中西区| 怀宁县| 炉霍县| 溧水县|