When using a function that has infinite scrolling such as a list, the load on the actual machine is monitored by Android Studio's Memory Profiler ~ ~ Poke the corner of the heavy box ~ ~ I am checking the quality, but I move it by hand I'm tired.
So I tried infinite scroll automation.
SampleCode
I implemented the Sample code of RecyclerView easily, so I will use it. https://github.com/yamachita0109/RecyclerView
Just paste the following command on the command line and you're good to go. If you want to specify more detailed values, refer to Official Document.
$ while [ true ]; do
adb shell input swipe 521 1540 492 432
done;
・ This is the first time I have implemented RecyclerView with scratch, and I want to implement it more beautifully so that it can withstand actual services.
・ Anything is discovered with the adb command. It seems that it is possible to memorize the actual operation and make it into a script. Let's give it a try.
・ If you have any other more convenient ways to use the adb command, please let us know! !!