Android — ScrollView inside a Gallery
问题 So, the goal is to have a scroll view behaving correctly inside a gallery. I'm using an example posted by atraudes which you can see below: public class GalleryFriendlyScrollView extends ScrollView{ private static int NONE = -1; private static int DOSCROLLVIEW = 0; private static int DOGALLERY = 1; private float lastx = 0; private float lasty = 0; private float firstx = 0; private float firsty = 0; private float lastRawx = 0; private float lastRawy = 0; private int gestureRecipient = NONE;