简体   繁体   中英

How can i call scroll of another android application using my system overlay button

I am already have created an android service with overlay button and after clicking "Overaly button" - i just want to autoscroll my current android view to bottom (I mean any another APP - like android Sms inbox, facebook messanger and so on).

Also i have tried to simulate touch or drag, BUT no results

PS - sorry for my english. :)

Ok I guess you just want to Autoscroll right at the bottom, so this might help if your layout is under a ScrollView

 scrollView.post(new Runnable() { 
 public void run() {
     scrollView.fullScroll(View.FOCUS_DOWN);
 }
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM