I solved the problem - here is how -

public class SpecialScrollView
        extends ScrollView
{
        public SpecialScrollView(Context context)
        {
                super(context);
        }

        public SpecialScrollView(Context context, AttributeSet attrs)
        {
                super(context, attrs);
        }

        public SpecialScrollView(Context context, AttributeSet attrs, int
defStyle)
        {
                super(context, attrs, defStyle);
        }

        @Override
        public boolean onTouchEvent(MotionEvent motionEvent)
        {
                super.onTouchEvent(motionEvent);
                return false;
        }
}


On Mar 22, 12:38 pm, jotobjects <[email protected]> wrote:
> More information - the gallery works if I grab an area below the
> ScrollView (some of the ScrollView gallery items do not fill the whole
> vertical area)
>
> On Mar 22, 12:29 pm, jotobjects <[email protected]> wrote:
>
>
>
> > Sorry - I mis-stated the problem.
>
> > The ScrollView inside the Gallery DOES scroll.
>
> > However the outer Gallery does NOT scroll.
>
> > On Mar 22, 12:17 pm, jotobjects <[email protected]> wrote:
>
> > > Looks like a ScrollView inside a Gallery does not scroll.  Has anyone
> > > done this successfully?
>
> > > I saw an earlier post that Gallery inside a ScrollView (inverse) does
> > > work (but not what I want).
>
> > > Is there something I can do with touch events to push the horizontal
> > > gestures down to the internal ScrollView?
>
> > > Thanks...

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to