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

溫馨提示×

溫馨提示×

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

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

Android中怎么利用GestureDetector實現手勢滑動效果

發布時間:2021-08-11 13:53:38 來源:億速云 閱讀:119 作者:Leah 欄目:編程語言

這篇文章給大家介紹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;  } }); }}

關于Android中怎么利用GestureDetector實現手勢滑動效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

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

AI

奉新县| 临洮县| 镇平县| 临江市| 美姑县| 香格里拉县| 昭通市| 理塘县| 宜川县| 华宁县| 兴业县| 上蔡县| 嘉禾县| 永吉县| 扎囊县| 赣榆县| 军事| 新余市| 屯门区| 泸水县| 北宁市| 安化县| 墨竹工卡县| 黄浦区| 荆门市| 桓台县| 周至县| 赤水市| 玛沁县| 鹤庆县| 个旧市| 射洪县| 柳江县| 宜城市| 灵璧县| 农安县| 措美县| 松潘县| 万载县| 东台市| 岚皋县|