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有了一个大概的认识,但是这并不完美,因为那些都是理论知识,无法描述我们工程开发中实际情况.而这一篇,将带领小伙伴们一起试着写一个能在工程中使用的 ...
随机推荐
- expdp 备份数据库-附带报错信息
操作系统层面创建目录 [root@Oracle11g ~]# mkdir -p /home/oracle/db_back/ 修改目录的所属用户.所属组 [root@Oracle11g ~]# chow ...
- ORACLE调度之基于事件的调度(二)【weber出品】
一.回顾 调度分基于时间的调度和基于事件的调度. 稍微复习一下前面的只是请浏览:<ORACLE调度之基于时间的调度(一)[weber出品]> 二.知识补充 1.队列:一种数据结构,就像一根 ...
- iOS开发实现登陆
Assumption假设:iOS端加载Web页,然后用户输入用户名密码登陆,WebServer会把用户登陆信息记载在Cookie.那么iOS客户端如何取到Cookie中的登陆信息. 客户端监听 NSH ...
- Oracle Pivot学习心得
今天在做一个查询报表需要将多行的查询结果转换成一行,数据格式如下 ID Type Parameter Value Machine_NO Operator UpdateTime 1 11111111 ...
- .net中XML的创建02(linqToXml)
linqToXml比较的灵活和方便,它是基于函数式编程具体的使用如下:引用程序集using System.Xml.Linq; 1.创建XDocument并设置文档头 XDocument XDoc = ...
- React 点击删除列表中对应项(React 获取DOM中自定义属性)
点击删除按钮,删除列表中对应项本来是React比较基础的应用,可是应用情况变得复杂了以后,我还真想了一会儿才搞定. 简化一下应用场景:点击新增按钮,增加一条输入框,点击输入框旁边的按钮,删除该输入框( ...
- 微信小应用vs progressive-web-apps
https://developers.google.com/web/progressive-web-apps/
- Fractal_Test
本文由博主(YinaPan)原创,转载请注明出处:http://www.cnblogs.com/YinaPan/p/Fractal_Test.html 参考:http://catlikecoding ...
- Android学习----Android Studio 技巧汇总
关于快捷键 The File Structure Popup ctrl+f12此快捷键可以调出当前文件的大纲,并通过模糊匹配快速跳转至指定的方法.勾选上“show anonymous classes” ...
- (转)ligerUI 使用教程之Tip介绍与使用
概述: ligertip是ligerUI系列插件中的tooltip类插件,作用是弹一个浮动层,起提示作用 阅读本文要求具备jQuery的基本知识,不然文中的javascript代码不易理解 截 ...