本文整理汇总了Java中com.robotium.solo.Solo.drag方法的典型用法代码示例。如果您正苦于以下问题:Java Solo.drag方法的具体用法?Java Solo.drag怎么用?Java Solo.drag使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.robotium.solo.Solo
的用法示例。
在下文中一共展示了Solo.drag方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleRequest
import com.robotium.solo.Solo; //导入方法依赖的package包/类
@Override
public RPCMessage handleRequest(RPCMessage request, Solo solo, Map<Integer, Object> varCache) {
//获取listView,so: 参数:listView,count
RPCMessage response;
int hash = Integer.parseInt((String) request.getArgs().get(0));//获取hashcode
ListView listView = (ListView) varCache.get(hash);
int [] location=new int[2];
listView.getLocationOnScreen(location);
listView.getClipBounds();
int listX=location[0]; //listView在界面上的X位置
int listY=location[1]; //listView在界面上的Y位置
float startX0=(float)listX+listView.getWidth()/2;
float startY0=(float)listY+listView.getHeight()-1; //-1是为了让拖拽的起点错开边界值
float endX0=(float)listX+listView.getWidth()/2;
float endY0=(float)listY;
try{
solo.drag(startX0,endX0,startY0,endY0,30);
}catch (Throwable e){
response = ErrorResponseHelper.makeViewNotFoundErrorResponse(getClass());
return response;
}
return RPCMessage.makeSuccessResult();
}
示例2: handleRequest
import com.robotium.solo.Solo; //导入方法依赖的package包/类
@Override
public RPCMessage handleRequest(RPCMessage request, Solo solo, Map<Integer, Object> varCache) {
//获取listView,so: 参数:listView
RPCMessage response;
int hash = Integer.parseInt((String) request.getArgs().get(0));//获取hashcode
ListView listView = (ListView) varCache.get(hash);
int [] location=new int[2];
listView.getLocationOnScreen(location);
int listX=location[0]; //listView在界面上的X位置
int listY=location[1]; //listView在界面上的Y位置
float startX0=(float)listX+listView.getWidth()/2;
float startY0=(float)listY;
float endX0=(float)listX+listView.getWidth()/2;
float endY0=(float)listY+listView.getHeight()-1; //-1是为了让拖拽的起点错开边界值
try{
solo.drag(startX0,endX0,startY0,endY0,30);
}catch (Throwable e){
response = ErrorResponseHelper.makeViewNotFoundErrorResponse(getClass());
return response;
}
return RPCMessage.makeSuccessResult();
}