When I open accessibility activity using startActivity, It takes me to the accessibility activity but the scroll stays at the top, How can I change the scrolling to my app?
Intent intent = new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS); startActivity(intent);
You cannot do that, once the Accessibility settings open, your App process loses control. Unless user has rooted device, you can get control of touch/scroll over other apps.
2.1m questions
2.1m answers
60 comments
57.0k users