I have to achieve that the Touch Scroll on the ViewFlipper. For Example. I have two Images. At First, ViewFlipper shows an First Image. Now I Flung the view from right to left. The First Image view Slide out left and the Second Slide in from Left. I can achieve it By this Post. But I want to Scroll the image. That is, on the Action_Move Event I want to do Touch Scroll. For Example, when I move the touch from right to left it will flung how much the touch moves. on that time the output should show both images partly.

How to do that? What I have to measure the Screen levels(height & width). Example codes are more helpful.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

I created an example that does what you want I think. See Source Code: ImageView Flipper + SD Card Scanner

link|improve this answer
+1 Thanks for Reply.This is what i have already done. please read my question. i want to perform the touch scroll on it. – Praveen Jul 8 '10 at 13:43
You must not have looked at the example I posted... because that is exactly what it does... however, you have to create your own touch listener and TranslateAnimation to get the tactile "move with finger" result and you are correct that the example doesn't do that and I have yet to find an example that shows how to accomplish it. – androidworkz Jul 8 '10 at 15:30
1  
I thought you might be interested in this thread I found this weekend. I already have modified a version of my view flipper example above to use this but it still has some issues that I need to fix before I post it on my blog. At any rate this shows you how to get that tactile touch... however, you will have to write a custom adapter to hold the images. groups.google.com/group/android-developers/browse_frm/thread/… – androidworkz Jul 12 '10 at 12:52
That nice. But more complicated to integrate on my code. I created all layout as resource xml. – Praveen Jul 12 '10 at 17:45
I only have to fix saving application state after integrating his ideas in to the viewflipper above. Once I do that, I will post the code on my blog and post here. I also used xml... but I changed how I did it. I created a parent layout (main.xml) which only contains the FrameLayout and then I created a second layout which only contains the layout for each individual image. This way I can use the ViewHolder design pattern for the getView and I only call inflate twice... once for the parent (FrameLayout) and once for my ImageView. – androidworkz Jul 13 '10 at 15:49
show 1 more comment
feedback

If you need to detect scroll on only viewflipper which is not occupying entire screen, then try the below

gestureDetector = new GestureDetector(new MyGestureDetector());

viewFlipper.setOnTouchListener(new View.OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            if (gestureDetector.onTouchEvent(event)) {
                return false;
            }
            return true;
        }
  });

and MyGestureDetector will be same as in http://www.codeshogun.com/blog/2009/04/16/how-to-implement-swipe-action-in-android/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.