uiautomator学习-swipe
Posted lian-lian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uiautomator学习-swipe相关的知识,希望对你有一定的参考价值。
记录swipe滑动使用
向下滑动:
public void SwipeDown(int X){
int height = uidevice.getDisplayHeight();
int width = uidevice.getDisplayWidth();
int step = 50;
uidevice.swipe(width/2,height/2,width/2,height/2-X,step);
}
uidevice.swipe中有五个参数,分别对应了起点x轴坐标、起点Y轴坐标、终点X轴坐标、终点Y轴坐标,分多少步完成;
以上是关于uiautomator学习-swipe的主要内容,如果未能解决你的问题,请参考以下文章
使用片段状态寻呼机适配器和 SQLite 数据库中的数据实现 swipe 接口时崩溃
FragmentTabHost Horizontal Scrollview + Swipe Android