Try overriding the Gallery method OnFling()and not call the superclass method OnFling().
Thus, swipe the gallery on the screen to advance one item in time. This will force the gallery to promote one item per napkin.
:
ExtendedGallery:
public class ExtendedGallery : Gallery
{
public ExtendedGallery(Context context) : base(context)
{
}
public override bool OnFling (MotionEvent e1, MotionEvent e2, float velocityX, float velocityY)
{
return false;
}
}
ExtendedGallery Gallery.