this my code for drag up current screen.
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
here scroll is working but very slow.
So for fast scroll what changes in this code required ?
I faced the same problem, what you need to do is adjust the following line of code,
solo.drag(fromX, toX, fromY, toY, 40); //Change 40 to 10
This will increase your scrolling speed, the lower the step count, the faster is the scrolling!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With