I want to ask if there is a way to execute swipe command inside the application
adb shell input touchscreen swipe 200 200 500 200
I want to swipe through button onclick
I want to ask if there is a way to execute swipe command inside the application
adb shell input touchscreen swipe 200 200 500 200
I want to swipe through button onclick
just
input touchscreen swipe 200 200 500 200
is enough if you are executing a command from your phone .Call the method below as
exec("input touchscreen swipe 200 200 500 200");