`

OnGestureListener与ViewFlipper

 
阅读更多
public interface OnGestureListener {

        /**
         * Notified when a tap occurs with the down {@link MotionEvent}
         * that triggered it. This will be triggered immediately for
         * every down event. All other events should be preceded by this.
         *
         * @param e The down motion event.
         */
        boolean onDown(MotionEvent e);

        /**
         * The user has performed a down {@link MotionEvent} and not performed
         * a move or up yet. This event is commonly used to provide visual
         * feedback to the user to let them know that their action has been
         * recognized i.e. highlight an element.
         *
         * @param e The down motion event
         */
        void onShowPress(MotionEvent e);

        /**
         * Notified when a tap occurs with the up {@link MotionEvent}
         * that triggered it.
         *
         * @param e The up motion event that completed the first tap
         * @return true if the event is consumed, else false
         */
        boolean onSingleTapUp(MotionEvent e);

        /**
         * Notified when a scroll occurs with the initial on down {@link MotionEvent} and the
         * current move {@link MotionEvent}. The distance in x and y is also supplied for
         * convenience.
         *
         * @param e1 The first down motion event that started the scrolling.
         * @param e2 The move motion event that triggered the current onScroll.
         * @param distanceX The distance along the X axis that has been scrolled since the last
         *              call to onScroll. This is NOT the distance between {@code e1}
         *              and {@code e2}.
         * @param distanceY The distance along the Y axis that has been scrolled since the last
         *              call to onScroll. This is NOT the distance between {@code e1}
         *              and {@code e2}.
         * @return true if the event is consumed, else false
         */
        boolean onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY);

        /**
         * Notified when a long press occurs with the initial on down {@link MotionEvent}
         * that trigged it.
         *
         * @param e The initial on down motion event that started the longpress.
         */
        void onLongPress(MotionEvent e);

        /**
         * Notified of a fling event when it occurs with the initial on down {@link MotionEvent}
         * and the matching up {@link MotionEvent}. The calculated velocity is supplied along
         * the x and y axis in pixels per second.
         *
         * @param e1 The first down motion event that started the fling.
         * @param e2 The move motion event that triggered the current onFling.
         * @param velocityX The velocity of this fling measured in pixels per second
         *              along the x axis.
         * @param velocityY The velocity of this fling measured in pixels per second
         *              along the y axis.
         * @return true if the event is consumed, else false
         */
        boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY);
    }

 其中,

onSingleTapUp

是 短按 up的时候触发,如果是长按,活着滑动,只要时间比较常,就不会触发,所以在这里充当onClick的作用,可以区分ViewFlipper 的onFling和click,所以ViewFlipper就不用onclick了

分享到:
评论

相关推荐

    【Android】滑动屏幕效果GestureDetector、OnGestureListener、ViewFlipper

    `GestureDetector`、`OnGestureListener` 和 `ViewFlipper` 是Android SDK提供的重要组件,用于处理用户的手势输入和视图切换。接下来,我们将详细讨论这三个组件以及如何将它们结合使用来创建滑动屏幕的效果。 `...

    ViewFlipper+OnGestureListener+动画.

    在本案例中,`ViewFlipper`被与`OnGestureListener`结合使用,通过监听用户的手势来触发视图的切换,从而提供更加直观和自然的用户体验。 首先,我们需要了解`OnGestureListener`。这是Android SDK中的一个接口,它...

    android viewflipper 图片滑动demo

    这需要实现GestureDetector.OnGestureListener接口,并在onFling()方法中处理滑动事件。 ```java GestureDetector gestureDetector = new GestureDetector(this, new GestureDetector.SimpleOnGestureListener() { ...

    Android使用ViewFlipper实现左右滑动效果面

    在Activity或Fragment的onCreate()或onResume()方法中,将GestureDetector与ViewFlipper关联起来。这样,当用户在ViewFlipper上滑动时,GestureDetector就能捕获到滑动事件。 4. **处理ViewFlipper的切换**: 在...

    Android ViewFlipper 的使用

    - 可以通过实现`OnGestureListener`接口并附加到`ViewFlipper`来处理手势事件,例如滑动切换。 6. **源码解析**: - 在`ViewFlipper`的源码中,`startFlipping()`和`stopFlipping()`方法控制了自动切换的开关。`...

    ViewFlipper无限轮播

    这可以通过实现`GestureDetector.OnGestureListener`接口并在`onFling()`方法中处理滑动手势来完成。 4. **优化性能**: - 对于大量视图的轮播,为避免一次性加载所有视图导致性能下降,可以使用PagerAdapter(如`...

    使用ViewFlipper的导航页面

    对于更复杂的场景,比如需要显示的数据源是动态的,可以将`ViewFlipper`与`Adapter`结合,创建一个自定义的`PagerAdapter`,将数据绑定到`ViewFlipper`的子视图上。 在AppTest这个项目中,可能包含了如何使用`...

    ViewFlipper和Gesture的使用(1)

    在`GestureDetector` 中,我们还需要设置一个回调接口`OnGestureListener`,通过实现该接口的几个方法,我们可以对各种手势做出相应的响应。例如,`onSingleTapUp(MotionEvent e)` 用于处理单击事件,而`onLongPress...

    Android使用ViewFlipper做页面切换,与手势滑动切换的使用

    Android系统自带有一个多页面管理的控件:ViewFlipper. 它可以简单实现子页面的切换,,, 它只需使用addView方法添加几个View,每个View对应的是一个页面,即可完成对于多页面的管理,,, 在android上实现手势...

    viewflipper的使用

    ViewFlipper是Android SDK提供的一款用于展示多个视图并实现翻页效果的控件。它非常适合用来创建轮播图、卡片切换或者动画效果等场景。本篇文章将深入讲解如何使用ViewFlipper,以及如何结合手势识别来实现更丰富的...

    Android仿淘宝头条滚动广告条 ViewFlipper

    - 我们可以添加`OnGestureListener`或`OnTouchListener`来处理用户的滑动操作,允许用户手动切换广告。 - 为了提高用户体验,我们还可以添加点击事件监听器,当用户点击广告时,可以跳转到相应的详情页面或执行...

    viewflipper实现左右滑屏

    可以使用GestureDetector配合OnGestureListener来检测滑动事件。当检测到向左或向右的滑动时,调用`showNext()`或`showPrevious()`方法来切换视图。 5. **动画效果**:ViewFlipper内置了一些简单的动画效果,如`...

    ViewFlipper+GestureDetector多页面切换

    在Android开发中,ViewFlipper和GestureDetector是两个非常重要的组件,它们可以帮助开发者实现丰富的用户交互功能,尤其是多页面切换。本教程将深入探讨如何利用这两个工具来创建一个高效的多页面切换体验。 **...

    ViewFlipper的使用

    尽管`ViewFlipper`不是适配器视图,但我们可以通过扩展`PagerAdapter`并将其与`ViewPager`配合使用,模拟实现类似`ViewFlipper`的功能,但支持更复杂的视图切换逻辑和无限轮播。 8. **自定义逻辑** 通过重写`...

    UI开发第八篇——ViewFlipper 左右滑动效果

    在代码示例中,首先创建了一个TestFlip Activity,并实现了OnGestureListener接口,以便处理手势事件。 在onCreate()方法中,通过LayoutInflater加载布局资源,然后将其添加到ViewFlipper中。这里假设我们有四个...

    android 利用ViewFlipper来实现滑动切换Activity

    利用viwflipper来将多个activity封装在一个view中,通过实现OnGestureListener接口的onTouchEvent()方法和onFling() 方法,即可通过手持滑动切换activity。

    Android ActivtiyGroup和ViewFlipper实现Activity滑屏切换

    `ActivityGroup`和`ViewFlipper`是两个在早期Android版本中用于创建动态、交互式用户界面的重要组件。`ActivityGroup`允许开发者在单一的`TabHost`或者`FrameLayout`中嵌套多个`Activity`,而`ViewFlipper`则是一个...

    Android ViewFlipper简单应用

    在`GuideActivity`类中,我们继承自AppCompatActivity,并实现了GestureDetector.OnGestureListener接口,这样我们可以监听用户的触摸事件,例如左右滑动来切换视图。在`onCreate()`方法中,我们首先调用`...

    Android组件ViewFlipper的使用

    使用ViewFlipper的手势功能完成的图像之间的切换、 package com.action; import android.app.Activity; import android.os.Bundle; import android.view.GestureDetector; import android.view.MotionEvent; import...

Global site tag (gtag.js) - Google Analytics