上下滚动

scrollDown

  1. public boolean scrollDown()
  2. Scrolls down the screen.
  3. Returns:
  4. true if more scrolling can be performed
  5. false if it is at the end of the screen

滚动条进行向下操作
返回:
true-如果可以进行滚动的话
false-如果已经滚动到底部,无法滚动

scrollUp

  1. public boolean scrollUp()
  2. Scrolls up the screen.
  3. Returns:
  4. true if more scrolling can be performed
  5. false if it is at the top of the screen

滚动条进行向上操作

返回:
true-如果可以进行滚动的话
false-如果已经滚动到顶部,无法滚动

scrollToBottom

  1. public void scrollToBottom()
  2. Scrolls to the bottom of the screen.

向下滚动屏幕,一直滚动到底部

scrollToTop

  1. public void scrollToTop()
  2. Scrolls to the top of the screen.

向上滚动屏幕,一直滚动到顶部

对列表

scrollDownList

  1. public boolean scrollDownList(android.widget.AbsListView list| int index)
  2. Scrolls down the specified AbsListView.
  3. Parameters:
  4. list - the AbsListView to scroll
  5. index - the index of the ListView to scroll. 0 if only one list is available
  6. Returns:
  7. true if more scrolling can be performed

操作一个list向下滚动

参数:
list-被操作的滚动条的对象
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到底部,无法滚动

scrollUpList

  1. public boolean scrollUpList (android.widget.AbsListView list | int index)
  2. Scrolls up a ListView matching the specified index.
  3. Parameters:
  4. list - the AbsListView to scroll
  5. index - the index of the ListView to scroll. 0 if only one list is available
  6. Returns:
  7. true if more scrolling can be performed

操作一个list向上滚动

参数:
list-被操作的滚动条的对象
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到顶部,无法滚动

scrollListToBottom

  1. public boolean scrollListToBottom (android.widget.AbsListView list | int index)
  2. Scrolls to the bottom of the specified AbsListView.
  3. Parameters:
  4. list - the AbsListView to scroll
  5. index - the index of the ListView to scroll. 0 if only one list is available
  6. Returns:
  7. true if more scrolling can be performed

操作一个list向下滚动一直滚动到底部
参数:
list-被操作的滚动条的对象
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到底部,无法滚动

scrollListToTop

  1. public boolean scrollListToTop (android.widget.AbsListView list | int index)
  2. Scrolls to the top of the specified AbsListView.
  3. Parameters:
  4. list - the AbsListView to scroll
  5. index - the index of the ListView to scroll. 0 if only one list is available
  6. Returns:
  7. true if more scrolling can be performed

操作一个list向上滚动一直滚动到顶部
参数:
list-被操作的滚动条名称
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到顶部,无法滚动

scrollListToLine

  1. public void scrollListToLine (android.widget.AbsListView list | int index , int line)
  2. Scroll the specified AbsListView to the specified line.
  3. Parameters:
  4. absListView - the AbsListView to scroll
  5. index - the index of the AbsListView to scroll
  6. line - the line to scroll to

操作滚动条滚动到list的某一行

参数:
list-被操作的滚动条名称
index-被操作的滚动条索引
line-滚动到第几行

水平滚动

scrollToSide

  1. scrollToSide
  2. void scrollToSide (int side [, float scrollPosition])
  3. Scrolls horizontally.
  4. Parameters:
  5. side - the side to scroll; RIGHT or LEFT
  6. scrollPosition - the position to scroll to, from 0 to 1 where 1 is all the way. Example is: 0.60.

水平滚动屏幕,可限制操作滚动的位置
参数:
side-水平滚动的方向,LEFT或者RIGHT
scrollPosition-滚动屏幕的比例,从0到1,如果是0.5,则只会对一半的屏幕进行滚动

scrollViewToSide

  1. public scrollViewToSide (android.view.View.view view, int side [, float scrollPosition])
  2. Scrolls a View horizontally.
  3. Parameters:
  4. view - the View to scroll
  5. side - the side to scroll; RIGHT or LEFT
  6. scrollPosition - the position to scroll to, from 0 to 1 where 1 is all the way. Example is: 0.60.

水平滚动某一个view,可限制操作滚动的位置

参数:
view-滚动的view的对象
side-水平滚动的方向,LEFT或者RIGHT
scrollPosition-滚动屏幕的比例,从0到1,如果是0.5,则只会对一半的屏幕进行滚动

【转载:http://blog.csdn.net/tt75281920/article/details/26821035】

Robotium--scroll操作系列的更多相关文章

  1. C# 串口操作 ---- 系列文章

    C# 串口操作系列(5)--通讯库雏形 通讯库雏形的建立. 串口通讯介绍的高级篇,介绍更高级的抽象,为扩展为通用的客户端通讯库做铺垫,扩展性的考虑,能支持任意类型的流设备. ... 2010-08-0 ...

  2. C# 串口操作系列(5)--通讯库雏形

    C# 串口操作系列(5)--通讯库雏形 标签: 通讯c#数据分析byteclassstring 2010-08-09 00:07 21378人阅读 评论(73) 收藏 举报  分类: 通讯类库设计(4 ...

  3. C# 串口操作系列(4) -- 协议篇,文本协议数据解析

    C# 串口操作系列(4) -- 协议篇,文本协议数据解析 标签: c#uiobjectstringbyte 2010-06-09 01:50 19739人阅读 评论(26) 收藏 举报  分类: 通讯 ...

  4. 【转】C# 串口操作系列(1) -- 入门篇,一个标准的,简陋的串口例子。

    C# 串口操作系列(1) -- 入门篇,一个标准的,简陋的串口例子. 标签: c#objectnewlineexceptionbytestring 2010-05-17 01:10 117109人阅读 ...

  5. zw量化交易·实盘操作·系列培训班

    参见: <zw量化交易·实盘操作·系列培训班> http://blog.sina.com.cn/s/blog_7100d4220102w0q5.html

  6. jQuery下拉框操作系列$("option:selected",this) &&(锋利的jQuery)

    jQuery下拉框操作系列$("option:selected",this)  &&(锋利的jQuery) <!DOCTYPE html> <ht ...

  7. C# 数据操作系列 - 6 EF Core 配置映射关系

    0. 前言 在<C# 数据操作系列 - 5. EF Core 入门>篇中,我们简单的通过两个类演示了一下EF增删改查等功能.细心的小伙伴可能看了生成的DDL SQL 语句,在里面发现了些端 ...

  8. C# 数据操作系列 - 8. EF Core的增删改查

    0.前言 到目前为止,我们看了一下如何声明EF Core的初步使用,也整体的看了下EF Core的映射关系配置以及导航属性的配置. 这一篇,我带大家分享一下,我在工作中需要的EF Core的用法. 1 ...

  9. C# 数据操作系列 - 12 NHibernate的增删改查

    0. 前言 上一篇<C# 数据操作系列 - 11 NHibernate 配置和结构介绍> 介绍了Nhibernate里的配置内容.这一篇将带领大家了解一下如何使用NHIbernate.之前 ...

  10. C# 数据操作系列 - 15 SqlSugar 增删改查详解

    0. 前言 继上一篇,以及上上篇,我们对SqlSugar有了一个大概的认识,但是这并不完美,因为那些都是理论知识,无法描述我们工程开发中实际情况.而这一篇,将带领小伙伴们一起试着写一个能在工程中使用的 ...

随机推荐

  1. 关于User&nbsp;Defined&nbsp;Runtime&nbsp;Attributes的小技巧

    在用XIB里自定制view,button,label...的一些属性时,例如边框宽度,边框颜色等,如下图:

  2. js监听滚动条事件

    (function () { if(document.addEventListener){ document.addEventListener('mousewheel',scrollFunc,fals ...

  3. cas sso原理(转)

    采用CAS原理构建单点登录 企业的信息化过程是一个循序渐进的过程,在企业各个业务网站逐步建设的过程中,根据各种业务信息水平的需要构建了相应的应用系统,由于这些应用系统一般是 在不同的时期开发完成的,各 ...

  4. php小知识点

    1.字符串可以里面的字符可以像数组一样访问,比如$s = "123";$s[1]就等于2,如果字符串为中文则会乱码,需要使用mb_substr进行截取: 2.php中的单引号(' ...

  5. 在VMware安装Centos再安装Oracle数据库(个人学习使用)

    打开VMware 选择稍后安装 自定义安装 小生安装的是64位的Centos 给虚拟机设置名称和安装位置 设置虚拟机打处理器并分配内存(oracle12G我建议内存为2G以上) 网络类型选择仅主机模式 ...

  6. underscorejs-sortBy学习

    2.17 sortBy 2.17.1 语法 _.sortBy(list, iteratee, [context]) 2.17.2 说明 返回一个排序后的list拷贝副本. list为集合,如数组.对象 ...

  7. mysql主从复制 (超简单) 转载

    怎么安装mysql数据库,这里不说了,只说它的主从复制,步骤如下: 1.主从服务器分别作以下操作:   1.1.版本一致   1.2.初始化表,并在后台启动mysql   1.3.修改root的密码 ...

  8. php $_server 整理

    $_SERVER['PHP_SELF'] #当前正在执行脚本的文件名,与 document root相关. $_SERVER['argv'] #传递给该脚本的参数. $_SERVER['argc'] ...

  9. jquery hide() show()

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...

  10. 优雅降级&渐进增强

    优雅降级(Graceful Degradation) 关注点:最新的浏览器上构建体验很好的WEB应用. 降级:旧版本浏览器提供差强人意的体验,不影响功能的使用. 渐进增强(Progressive En ...