Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
76 views
in Technique[技术] by (71.8m points)

android - How can I change the scroll inside the accessibility activity?

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);
question from:https://stackoverflow.com/questions/65937528/how-can-i-change-the-scroll-inside-the-accessibility-activity

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...