上下滚动

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. jrae源码解析(一)

    jare用java实现了论文<Semi-Supervised Recursive Autoencoders for Predicting Sentiment Distributions>中 ...

  2. JavaScript 字符串

    字符串属性 属性 描述 constructor 返回创建字符串属性属性的函数 length 返回字符串的长度 prototype 允许您向对象添加属性和方法 字符串方法 Method 描述 charA ...

  3. Asp.net 导航条【1】

    PHP比较成熟的开放的源代码比较多,比方说PrestaShop,比方说Discuz!...... 虽然语言不同,但基本原理是一样的,有时间的话读一读,对学习ASP.NET应该是非常有好处的(唉,什么时 ...

  4. [转]Delphi : keydown与keypress的区别,组合键

    Shift 是一个集合变量. type TShiftState = set of (ssShift, ssAlt, ssCtrl, ssLeft, ssRight, ssMiddle, ssDoubl ...

  5. Linux命令学习计划【sed】

    引言: Sed命令是linux里用于文本行处理的命令. 为了便于说明,我在/usr/dict下创建了字典words并以此作为演示模板 先用nl 打印下words内容: *打印篇: Q1:如何打印某一行 ...

  6. 安装 php-gd

    安装cmd提示不支持GD模块,不能使用缩略图功能,需要安装php-gd 1.安装 php-gd yum list php-gd yum install php-gd 2.重启 httpd servic ...

  7. 142 Linked List Cycle II(如果链表有环,找到入口结点Medium)

    题目意思:如果有环,返回入口结点 思路:先判断有没环,再计算环的结点数,然后p1指向头,p2往后移结点次数,p1.p2相遇为入口结点 ps:还是利用指针间距这个思路 /** * Definition ...

  8. PHP错误报告级别及调整方法

    运行PHP脚本时,PHP解析器会尽其所能能报告它遇到的问题.在PHP中错误报告的处理行为,都是通过PHP的配置文件php.ini中有关的配置指令确定的.另外PHP的错误报告有很多种级别,可以根据不同的 ...

  9. phpinfo.php

    ---恢复内容开始--- apache中的配置不对 查看httpd.conf文件中是否有: AddType ...... AddType application/x-httpd-php .php -- ...

  10. codeforces 235 B. Let's Play Osu!

    You're playing a game called Osu! Here's a simplified version of it. There are n clicks in a game. F ...