处理Gallery控件滑动过快

多张大图片浏览,用了Gallery控件,发现一划好几张就过去了。

这个利用网上搜来的方法,重新定义Gallery,覆盖其onFling方法

 

 @Override
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
            float velocityY)
    {
        //        velocityX = velocityX / 3;
        //        Log.i("SlowGallery", "onFling =  velocityX = " + velocityX);
        //        return false;
        
        int keyCode;
        if (isScrollingLeft(e1, e2))
        {
            keyCode = KeyEvent.KEYCODE_DPAD_LEFT;
        }
        else
        {
            keyCode = KeyEvent.KEYCODE_DPAD_RIGHT;
        }
        onKeyDown(keyCode, null);
        return true;
    }
    
    private boolean isScrollingLeft(MotionEvent e1, MotionEvent e2)
    {
        return e2.getX() > e1.getX();
    }

 

第二个问题,后来发现虽然用了那个方法,但滑向下一个的时候会出现更下一个item,设置了

 mGallery.setCallbackDuringFling(false);

就可以解决了。

这个方法API上面是这么说的:

Whether or not to callback on any getOnItemSelectedListener() while the items are being flinged. If false, only the final selected item will cause the callback. If true, all items between the first and the final will cause callbacks.

不过我试了试,发现callbacks不是网上说的onItemSelected方法,不知道到底是不触发item的哪个方法

反正就是不过出现更下一个了

 

 

p.s.现在还有个问题,就是滑动的时候手不松开,我写的Gallery就动来动去的,但系统和快图就一点都不动,不知道为神马?

你可能感兴趣的:(gallery)