Search code examples
androidandroid-layoutandroid-widgetscrollviewandroid-gallery

Android: How do I place a ScrollView (with text in) into Gallery?


I am going to place text in gallery in android app. The text is in a scrollView. Everything works fine but on draging the text towards right or left, no next page/ element shows (The screen remains still).If i have some thing outside the scrollView, it changes to the next element on dragging.

Can anyone help?


Solution

  • I understand your question. This situation is already handle by me after overriding method. I am not sure this will be the best solution, may be some one have more efficient solution then this, But it works for me.

    I used customised object of gallery with the over ridden method.

     public boolean isScrollingLeft(MotionEvent e1, MotionEvent e2) {
        return e2.getX() > e1.getX();
     }
    
     @Override
     public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
       float velocityY) {
        return super.onFling(e1, e2, 0, velocityY);
     }