加入收藏 | 设为首页 | 会员中心 | 我要投稿 宁德站长网 (https://www.0593zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 教程 > 正文

Android Gallery滑动太快的麻烦

发布时间:2021-11-24 21:19:53 所属栏目:教程 来源:互联网
导读:在做项目时,用Gallery展示图片,遇到一个问题,就是滑动太快,每次轻轻一拨图片,就滑动过去几张,怎么解决呢?搜索之后,有了下面的解决方法: 1、自定义Gallery重写onFling方法 public class UGallery extends Gallery { public UGallery(Context context,
在做项目时,用Gallery展示图片,遇到一个问题,就是滑动太快,每次轻轻一拨图片,就滑动过去几张,怎么解决呢?搜索之后,有了下面的解决方法:
 
1、自定义Gallery重写onFling方法
 
public class UGallery extends Gallery {  
  
    public UGallery(Context context, AttributeSet attrs) {  
        super(context, attrs);  
    }  
  
    private boolean isScrollingLeft(MotionEvent e1, MotionEvent e2) {  
        return e2.getX() > e1.getX();  
    }  
  
    @Override  
    public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,  
            float velocityY) {  
        int keyCode;  
        if (isScrollingLeft(e1, e2)) {        
            keyCode = KeyEvent.KEYCODE_DPAD_LEFT;  
        } else {  
            keyCode = KeyEvent.KEYCODE_DPAD_RIGHT;  
        }  
        onKeyDown(keyCode, null);  
        return true;  
    }  
}  
2、在布局文件中使用自定义com.soft.userctrl.UGallery
 
<com.soft.userctrl.UGallery Android:layout_width="fill_parent" android:spacing="50dip"  
    android:layout_height="fill_parent" android:id="@+id/isMain">  
3、在代码中像使用Gallery一样使用UGallery,即可

(编辑:宁德站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读