本文实例讲述了AndroID编程使用GestureDetector实现简单手势监听与处理的方法。分享给大家供大家参考,具体如下:
添加手势识别监听步骤:
一、给相应的控件添加触摸监听事件,
二、利用GestureDetector转发这个触摸事件。
三、事先定义好一个实现simpleongestureListener这个监听的接口的类
四、在这个监听中处理各种事件。
具体代码如下:
MainActivity代码如下:
package com.example.gesturedetector;import androID.support.v7.app.AppCompatActivity;import androID.os.Bundle;import androID.vIEw.GestureDetector;import androID.vIEw.MotionEvent;import androID.vIEw.VIEw;import androID.Widget.ImageVIEw;import androID.Widget.Toast;public class MainActivity extends AppCompatActivity { ImageVIEw img; GestureDetector myGestureDetector; class myGestureListener extends GestureDetector.SimpleOnGestureListener { @OverrIDe public boolean onFling(MotionEvent e1,MotionEvent e2,float veLocityX,float veLocityY) { if (e1.getX()-e2.getX()>50) { Toast.makeText(MainActivity.this,"从右往左滑动",Toast.LENGTH_LONG).show(); }else if(e2.getX()-e1.getX()>50){ Toast.makeText(MainActivity.this,"从左往右滑动",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); img = (ImageVIEw) findVIEwByID(R.ID.img); myGestureDetector = new GestureDetector(new myGestureListener()); img.setontouchListener(new VIEw.OntouchListener() { //motionEvent可以捕捉我们触摸屏幕的event事件 @OverrIDe public boolean ontouch(VIEw vIEw,MotionEvent motionEvent) { myGestureDetector.ontouchEvent(motionEvent); return true; } }); }}
activity_main的代码如下:
<?xml version="1.0" enCoding="utf-8"?><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" androID:paddingBottom="@dimen/activity_vertical_margin" androID:paddingleft="@dimen/activity_horizontal_margin" androID:paddingRight="@dimen/activity_horizontal_margin" androID:paddingtop="@dimen/activity_vertical_margin" tools:context="com.example.gesturedetector.MainActivity"> <ImageVIEw androID:ID="@+ID/img" androID:src="@mipmap/ic_launcher" androID:layout_centerHorizontal="true" androID:layout_centerVertical="true" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" /></relativeLayout>
更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android手势 *** 作技巧汇总》、《Android基本组件用法总结》、《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android编程使用GestureDetector实现简单手势监听与处理的方法全部内容,希望文章能够帮你解决Android编程使用GestureDetector实现简单手势监听与处理的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)