getScaledTouchSlop是一个距离,表示滑动的时候,手的移动要大于这个距离才开始移动控件。如果小于这个距离就不触发移动控件,如viewpager就是用这个距离来判断用户是否翻页

ViewConfiguration滑动参数设置类:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/**   
  * 包含了方法和标准的常量用来设置UI的超时、大小和距离   
  */
 public class ViewConfiguration {    
     // 设定水平滚动条的宽度和垂直滚动条的高度,单位是像素px    
     private static final int SCROLL_BAR_SIZE = 10;    
           
     //定义滚动条逐渐消失的时间,单位是毫秒    
     private static final int SCROLL_BAR_FADE_DURATION = 250;    
           
     // 默认的滚动条多少秒之后消失,单位是毫秒    
     private static final int SCROLL_BAR_DEFAULT_DELAY = 300;    
           
     // 定义边缘地方褪色的长度    
     private static final int FADING_EDGE_LENGTH = 12;    
           
     //定义子控件按下状态的持续事件    
     private static final int PRESSED_STATE_DURATION = 125;    
               
     //定义一个按下状态转变成长按状态的转变时间    
     private static final int LONG_PRESS_TIMEOUT = 500;    
               
     //定义用户在按住适当按钮,弹出全局的对话框的持续时间    
     private static final int GLOBAL_ACTIONS_KEY_TIMEOUT = 500;    
               
     //定义一个touch事件中是点击事件还是一个滑动事件所需的时间,如果用户在这个时间之内滑动,那么就认为是一个点击事件    
     private static final int TAP_TIMEOUT = 115;    
               
     /**   
      * Defines the duration in milliseconds we will wait to see if a touch event    
      * is a jump tap. If the user does not complete the jump tap within this interval, it is   
      * considered to be a tap.    
      */
     //定义一个touch事件时候是一个点击事件。如果用户在这个时间内没有完成这个点击,那么就认为是一个点击事件    
     private static final int JUMP_TAP_TIMEOUT = 500;    
           
     //定义双击事件的间隔时间    
     private static final int DOUBLE_TAP_TIMEOUT = 300;    
               
     //定义一个缩放控制反馈到用户界面的时间    
     private static final int ZOOM_CONTROLS_TIMEOUT = 3000;    
           
     /**   
      * Inset in pixels to look for touchable content when the user touches the edge of the screen   
      */
     private static final int EDGE_SLOP = 12;    
               
     /**   
      * Distance a touch can wander before we think the user is scrolling in pixels   
      */
     private static final int TOUCH_SLOP = 16;    
               
     /**   
      * Distance a touch can wander before we think the user is attempting a paged scroll   
      * (in dips)   
      */
     private static final int PAGING_TOUCH_SLOP = TOUCH_SLOP * 2;    
               
     /**   
      * Distance between the first touch and second touch to still be considered a double tap   
      */
     private static final int DOUBLE_TAP_SLOP = 100;    
               
     /**   
      * Distance a touch needs to be outside of a window's bounds for it to   
      * count as outside for purposes of dismissing the window.   
      */
     private static final int WINDOW_TOUCH_SLOP = 16;    
           
    //用来初始化fling的最小速度,单位是每秒多少像素    
     private static final int MINIMUM_FLING_VELOCITY = 50;    
               
     //用来初始化fling的最大速度,单位是每秒多少像素    
     private static final int MAXIMUM_FLING_VELOCITY = 4000;    
           
     //视图绘图缓存的最大尺寸,以字节表示。在ARGB888格式下,这个尺寸应至少等于屏幕的大小    
     @Deprecated    
     private static final int MAXIMUM_DRAWING_CACHE_SIZE = 320 * 480 * 4; // HVGA screen, ARGB8888    
           
     //flings和scrolls摩擦力度大小的系数    
     private static float SCROLL_FRICTION = 0.015f;    
           
     /**   
      * Max distance to over scroll for edge effects   
      */
     private static final int OVERSCROLL_DISTANCE = 0;    
           
     /**   
      * Max distance to over fling for edge effects   
      */
     private static final int OVERFLING_DISTANCE = 4;    
           
 }

ViewConfiguration.getScaledTouchSlop () 用法的更多相关文章

  1. Android开发 ViewConfiguration 用法

    ViewConfiguration 实例获取 ViewConfiguration viewConfiguration = ViewConfiguration.get(Context); 常用对象方法 ...

  2. 札记:android手势识别,MotionEvent

    摘要 本文是手势识别输入事件处理的完整学习记录.内容包括输入事件InputEvent响应方式,触摸事件MotionEvent的概念和使用,触摸事件的动作分类.多点触摸.根据案例和API分析了触摸手势T ...

  3. Android develop tricks——整理自国外的一些Blog

    ViewDragHelper --视图拖动是一个比較复杂的问题.这个类能够帮助解决不少问题.假设你须要一个样例,DrawerLayout就是利用它实现扫滑.Flavient Laurent 还写了一些 ...

  4. 自定义View系列教程01--常用工具介绍

    站在源码的肩膀上全解Scroller工作机制 Android多分辨率适配框架(1)- 核心基础 Android多分辨率适配框架(2)- 原理剖析 Android多分辨率适配框架(3)- 使用指南 自定 ...

  5. 【转】Android开发中让你省时省力的方法、类、接口

    转载 http://www.toutiao.com/i6362292864885457410/?tt_from=mobile_qq&utm_campaign=client_share& ...

  6. Android开发贴士集合

    Activity.startActivities()——对于从app流的中部启动会非常好. TextUtils.isEmpty()——一个普遍适用的简单工具类. Html.fromHtml()——格式 ...

  7. Android开发中,那些让您觉得相见恨晚的方法、类或接口

    Android开发中,那些让你觉得相见恨晚的方法.类或接口本篇文章内容提取自知乎Android开发中,有哪些让你觉得相见恨晚的方法.类或接口?,其实有一部是JAVA的,但是在android开发中也算常 ...

  8. Android开发中,那些让你相见恨晚的方法、类或接口

    1.getParent().requestDisallowInterceptTouchEvent(true);剥夺父view 对touch 事件的处理权,谁用谁知道. 2.ArgbEvaluator. ...

  9. Android开发中,有哪些让你觉得相见恨晚的方法、类或接口?

    ThumbnailUtils.extractThumbnail(bitmap, width, height); 压缩图片到指定大小的方法,以前都是一次次的createbitmap,然后用matrix去 ...

随机推荐

  1. iOS中的单例模式

    概念相关 单例模式 在程序运行过程,一个类只有一个实例 使用场合 在整个应用程序中,共享一份资源(这份资源只需要创建初始化1次) static static关键字会在声明变量的时候分配内存,在程序运行 ...

  2. iOS开发之网络编程--XCode7 更新以来需要手动设置的内容

    XCode7 更新以来,默认是不允许加载一些http网络请求,是因为现在网络大部分使用更安全的https协议头. 所以,iOS网络编程如果出现请求无效,事先考虑是否设置一下了以下操作:

  3. UIWebView的基本用法

    一.UIWebView的基础使用 1.创建UIWebView: CGRect bouds = [[UIScreen manScreen]applicationFrame]; UIWebView* we ...

  4. windows 和 linux ssh互连

    从windows连接到linux: linux开启sshd服务即可,主要是windows的配置如下: 1.使用软件,putty可以直接使用 2.使用cmd控制台连接linux,安装SSH Secure ...

  5. Effective Java 43 Return empty arrays or collections, not nulls

    Feature Return empty arrays or collection Return nulls Avoids the expense of allocating the array N ...

  6. ORA-12520: TNS: 监听程序无法为请求的服务器类型找到可用的处理程序

    当你碰到ORA-12520错误时,如下所示: 英文:ORA-12520: TNS:listener could not find available handler for requested typ ...

  7. 传递给后台的Json数据解析

    后台代码如下: public void ProcessRequest(HttpContext context) { context.Response.ContentType = "appli ...

  8. 烂泥:KVM虚拟机克隆

    本文由秀依林枫提供友情赞助,首发于烂泥行天下. 上一篇文章介绍了有关KVM虚拟机快照的创建与恢复,这篇文章我们来介绍有关KVM虚拟机克隆. KVM虚拟机的克隆,我们可以分以下几步: 1. 使用virt ...

  9. PHP实战-文章发布系统学习记录

    跟随大师的步伐,一步一步向前行进,PHP学习之路中的历程. 如果图片不能正常查看请访问云笔记链接 http://note.youdao.com/share/?id=3c25d8c03ef946d9c6 ...

  10. 新手在sae部署程序容易忽略的一个细节

    从来没用过这类云空间服务,尝了下鲜试用一下sae,但是部署的时候发现问题了,各种404..各种无奈啊..虽然百度无数篇介绍,但是都千篇一律没什么启发.. 但是巧在我部署的应用有个欢迎页面,点击链接的时 ...