Implement swiping page effect using GestureDetector and ViewFlipper
Refer to the exercise “Detect swipe using SimpleOnGestureListener” and “Bi-direction ViewFlipper”. It’s easy to implement swiping page effect using GestureDetector and ViewFlipper.Modify the code of the activity from the last exercise “Bi-direction ViewFlipper”.package com.exercise.AndroidViewFlipper;import android.app.Activity;import android.os.Bundle;import android.view.GestureDetector;import android.view.GestureDetector.SimpleOnGestureListener;import android.view.MotionEvent;import android.view.animation.Animation;import android.view.animation.AnimationUtils;import android.widget.ViewFlipper;public class AndroidViewFlipperActivity extends Activity { ViewFlipper page; …
No Comments
RSS feed for comments on this post.
Sorry, the comment form is closed at this time.