Robotium--scroll操作系列
上下滚动
scrollDown
- public boolean scrollDown()
- Scrolls down the screen.
- Returns:
- true if more scrolling can be performed
- false if it is at the end of the screen
滚动条进行向下操作
返回:
true-如果可以进行滚动的话
false-如果已经滚动到底部,无法滚动
scrollUp
- public boolean scrollUp()
- Scrolls up the screen.
- Returns:
- true if more scrolling can be performed
- false if it is at the top of the screen
滚动条进行向上操作
返回:
true-如果可以进行滚动的话
false-如果已经滚动到顶部,无法滚动
scrollToBottom
- public void scrollToBottom()
- Scrolls to the bottom of the screen.
向下滚动屏幕,一直滚动到底部
scrollToTop
- public void scrollToTop()
- Scrolls to the top of the screen.
向上滚动屏幕,一直滚动到顶部
对列表
scrollDownList
- public boolean scrollDownList(android.widget.AbsListView list| int index)
- Scrolls down the specified AbsListView.
- Parameters:
- list - the AbsListView to scroll
- index - the index of the ListView to scroll. 0 if only one list is available
- Returns:
- true if more scrolling can be performed
操作一个list向下滚动
参数:
list-被操作的滚动条的对象
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到底部,无法滚动
scrollUpList
- public boolean scrollUpList (android.widget.AbsListView list | int index)
- Scrolls up a ListView matching the specified index.
- Parameters:
- list - the AbsListView to scroll
- index - the index of the ListView to scroll. 0 if only one list is available
- Returns:
- true if more scrolling can be performed
操作一个list向上滚动
参数:
list-被操作的滚动条的对象
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到顶部,无法滚动
scrollListToBottom
- public boolean scrollListToBottom (android.widget.AbsListView list | int index)
- Scrolls to the bottom of the specified AbsListView.
- Parameters:
- list - the AbsListView to scroll
- index - the index of the ListView to scroll. 0 if only one list is available
- Returns:
- true if more scrolling can be performed
操作一个list向下滚动一直滚动到底部
参数:
list-被操作的滚动条的对象
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到底部,无法滚动
scrollListToTop
- public boolean scrollListToTop (android.widget.AbsListView list | int index)
- Scrolls to the top of the specified AbsListView.
- Parameters:
- list - the AbsListView to scroll
- index - the index of the ListView to scroll. 0 if only one list is available
- Returns:
- true if more scrolling can be performed
操作一个list向上滚动一直滚动到顶部
参数:
list-被操作的滚动条名称
index-被操作的滚动条索引,如果是0,表示只有一个可以滚动的list
返回:
true-如果可以进行滚动的话
false-如果已经滚动到顶部,无法滚动
scrollListToLine
- public void scrollListToLine (android.widget.AbsListView list | int index , int line)
- Scroll the specified AbsListView to the specified line.
- Parameters:
- absListView - the AbsListView to scroll
- index - the index of the AbsListView to scroll
- line - the line to scroll to
操作滚动条滚动到list的某一行
参数:
list-被操作的滚动条名称
index-被操作的滚动条索引
line-滚动到第几行
水平滚动
scrollToSide
- scrollToSide
- void scrollToSide (int side [, float scrollPosition])
- Scrolls horizontally.
- Parameters:
- side - the side to scroll; RIGHT or LEFT
- 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
- public scrollViewToSide (android.view.View.view view, int side [, float scrollPosition])
- Scrolls a View horizontally.
- Parameters:
- view - the View to scroll
- side - the side to scroll; RIGHT or LEFT
- 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操作系列的更多相关文章
- C# 串口操作 ---- 系列文章
C# 串口操作系列(5)--通讯库雏形 通讯库雏形的建立. 串口通讯介绍的高级篇,介绍更高级的抽象,为扩展为通用的客户端通讯库做铺垫,扩展性的考虑,能支持任意类型的流设备. ... 2010-08-0 ...
- C# 串口操作系列(5)--通讯库雏形
C# 串口操作系列(5)--通讯库雏形 标签: 通讯c#数据分析byteclassstring 2010-08-09 00:07 21378人阅读 评论(73) 收藏 举报 分类: 通讯类库设计(4 ...
- C# 串口操作系列(4) -- 协议篇,文本协议数据解析
C# 串口操作系列(4) -- 协议篇,文本协议数据解析 标签: c#uiobjectstringbyte 2010-06-09 01:50 19739人阅读 评论(26) 收藏 举报 分类: 通讯 ...
- 【转】C# 串口操作系列(1) -- 入门篇,一个标准的,简陋的串口例子。
C# 串口操作系列(1) -- 入门篇,一个标准的,简陋的串口例子. 标签: c#objectnewlineexceptionbytestring 2010-05-17 01:10 117109人阅读 ...
- zw量化交易·实盘操作·系列培训班
参见: <zw量化交易·实盘操作·系列培训班> http://blog.sina.com.cn/s/blog_7100d4220102w0q5.html
- jQuery下拉框操作系列$("option:selected",this) &&(锋利的jQuery)
jQuery下拉框操作系列$("option:selected",this) &&(锋利的jQuery) <!DOCTYPE html> <ht ...
- C# 数据操作系列 - 6 EF Core 配置映射关系
0. 前言 在<C# 数据操作系列 - 5. EF Core 入门>篇中,我们简单的通过两个类演示了一下EF增删改查等功能.细心的小伙伴可能看了生成的DDL SQL 语句,在里面发现了些端 ...
- C# 数据操作系列 - 8. EF Core的增删改查
0.前言 到目前为止,我们看了一下如何声明EF Core的初步使用,也整体的看了下EF Core的映射关系配置以及导航属性的配置. 这一篇,我带大家分享一下,我在工作中需要的EF Core的用法. 1 ...
- C# 数据操作系列 - 12 NHibernate的增删改查
0. 前言 上一篇<C# 数据操作系列 - 11 NHibernate 配置和结构介绍> 介绍了Nhibernate里的配置内容.这一篇将带领大家了解一下如何使用NHIbernate.之前 ...
- C# 数据操作系列 - 15 SqlSugar 增删改查详解
0. 前言 继上一篇,以及上上篇,我们对SqlSugar有了一个大概的认识,但是这并不完美,因为那些都是理论知识,无法描述我们工程开发中实际情况.而这一篇,将带领小伙伴们一起试着写一个能在工程中使用的 ...
随机推荐
- 注册表修改IP地址和DNS等信息
---------------------win8系统 1. 2. 3. --------------------------------------------------------------- ...
- java中的IO二
java中流分为节点流和处理流,IO一中的案例都是节点流 一.处理流的使用实例 二.装饰者模式 以上BufferReader的用法就是装饰者模式 Decorator就是动态地给对象增添行为 如果要实现 ...
- JavaScript 之 关键内容
词法作用域.调用对象.作用域链.闭包.构造函数.原型.类.继承 局部变量查找路径 属性查找路径
- 读取url(1
就书本例子 import java.io.InputStream; import java.net.URL; public class Test { public static void main(S ...
- C#:装箱和拆箱相关知识整理
1.装箱和拆箱是一个抽象的概念 2. 装箱是将值类型转换为引用类型 ; 拆箱是将引用类型转换为值类型 利用装箱和拆箱功能,可通过允许值类型的任何值与Object 类型的值相互转换,将值类型 ...
- 『重构--改善既有代码的设计』读书笔记----Introduce Explaning Variable
有时候你会遇到一系列复杂的表达式连续运算的时候,这个时候你可能根本招架不住如此长或者是如此复杂的长函数.这个时候你可以通过引用临时变量来储存他们的结果,将这些长函数的结果分成一个个临时变量来让函数清晰 ...
- java面试题及答案(基础题122道,代码题19道)
JAVA相关基础知识 1.面向对象的特征有哪些方面 1.抽象: 抽象就是忽略一个主题中与当前目标无关的那些方面,以便更充分地注意与当前目标有关的方面.抽象并不打算了解全部问题,而只是选择其中的一部分, ...
- Android学习-----Button点击事件几种写法
Button点击事件:大概可以分为以下几种: 匿名内部类 定义内部类,实现OnClickListener接口 定义的构造方法 用Activity实现OnClickListener接口 指定Button ...
- webAPP前端必备知识
了解各浏览器内核 Firefox:-moz-box-shadow Safari:-webkit-box-shadow Opera:-o-box-shadow IE:-ms-box-shadow Web ...
- jQuery.noConflict()防冲突机制
许多JS库都非常喜欢使用$作为函数.变量.有时候,由于页面复杂的历史问题,或者为了实现特定的功能,我们不得不在页面中引入多个JS库.今儿个来学习学习jQuery库是怎么解决$冲突问题.(jQuery- ...