este es mi código para arrastrar la pantalla actual.arrastre lento o rápido hacia arriba (desplazamiento) usando el robot
int screenWidth = getActivity().getWindowManager().getDefaultDisplay().getWidth();
int screenHeight = getActivity().getWindowManager().getDefaultDisplay().getHeight();
int fromX, toX, fromY, toY = 0;
fromX = screenWidth/2;
toX = screenWidth/2;
fromY = (screenHeight/2) + (screenHeight/3);
toY = (screenHeight/2) - (screenHeight/3);
int scroll_time = 10000;
solo.sleep(5000);
// Drag UP
solo.drag(fromX, toX, fromY, toY, 40);
Log.d(TAG, "Drag 1");
// here default origin (x,y = 0,0) is left upper corner
scroll está trabajando pero muy lento.
Así que para desplazarse rápidamente qué cambios en el código requerido?
Muchas gracias Royston Pinto, trabajando bien en mi teléfono Galaxy Ace. –