0

I need to somehow press the back button, but do it programmatically, without pressing the physical button, or play finish(), only in another application.

I found this: Trigger back-button functionality on button click in Android, but this reproduces the click from activity, and I need from service

public class AutoService extends AccessibilityService {

    @Override
    public void onBackPressed(){
        super.onBackPressed();
    }
}

Error, writes that there is no such method

antoshka
  • 13
  • 4

0 Answers0