Skip to content Skip to sidebar Skip to footer

Get Share Content Through Accessibility In Android App

I have an android app, which lets people share content from other apps to it. When it receives the shared data, it looks for the URL in the shared text and fetches the page and doe

Solution 1:

You could try that if it's only for 1 specific app. See question How to click button in settings using AccessibilityService? which clicks a button. This will not scale if you want to do this for more apps. You could however parse the text that is on the screen and look for http links and process them in a background service and then show a floating button like Link Bubble Browser

Solution 2:

You can simply trigger the share activity of your app when you detect the text from the other app; but the question is how will you know when user is done typing the text?!

One way is you can place a system-wide floating button similar to Facebook Messenger and after user clicks it, the text can be shared. This will reduce number of clicks user has to do.

So,

1) Yes, its possible to get text content via AccessibilityService.

2) No, you cannot automate this action.

Post a Comment for "Get Share Content Through Accessibility In Android App"