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有了一个大概的认识,但是这并不完美,因为那些都是理论知识,无法描述我们工程开发中实际情况.而这一篇,将带领小伙伴们一起试着写一个能在工程中使用的 ...
随机推荐
- 关于Core Data的一些整理(三)
关于Core Data的一些整理(三) 关于Core Data Stack的四种类与它们的关系如下: NSManagedObjectModel NSPersistentStore NSPersiste ...
- 继承UIView的子控件添加点击事件
UITapGestureRecognizer*tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:selfaction:@select ...
- 使用下拉列表框<select>标签,节省空间
下拉列表在网页中也常会用到,它可以有效的节省网页空间.既可以单选.又可以多选.如下代码: 讲解: 1.value: 2.selected="selected": 设置selecte ...
- protocol buffer VS 2013编译出错
protocol buffer 在VS2013编译会出现以下错误. 解决办法 把宏加上, 问题解决. 注: 该错误只出现在Debug版本.
- MPICH2在两台Ubuntu上安装(用mpd做进程管理)
本文在经过大量的实验终于不负众望成功的在两台Ubuntu 12.04上部署MPI的一个小型集群,MPICH2所用版本为mpich2-1.4.1,下载地址:http://www.mcs.anl.gov/ ...
- PHP删除Solr文档
<?php $options = array ( 'hostname' => 'localhost', 'port' => '8080', 'path'=>'solr/help ...
- gdb调试带参数程序(转:笑笑小白,cnblog http://www.cnblogs.com/rosesmall/archive/2012/04/10/2440514.html)
一般来说GDB主要调试的是C/C++的程序.要调试C/C++的程序,首先在编译时,我们必须要 把调试信息加到可执行文件中.使用编译 器(cc/gcc/g++)的 -g 参数可以做到这一点.如: > ...
- 11_RHEL安装Maya2015
1. 解压 tar -xvf ./Autodesk_Maya_English_2015_Linux_64bit.tgz 2. 运行 ./setup 2.1补充 如果提示缺少 libpng12.so.0 ...
- JavaScript-学习一加载不动
为先加载的js后加载的html 加载完js运行时因为未加载html的原因导致找不到js所控制的元素 所以解决的方法就是把js放到控制元素的下方 或者html的底部 做成函数的时候可以放在头部,也就是说 ...
- JS 日常
判断一个字符串是否在另一个字符串里面 var str = 'bblText'; if(str.indexOf("Text") > 0) alert("包含了Tex ...