Questions tagged [accessibilityservice]

An Android service which runs in the background and receives callbacks by the system when accessibility events are fired.

543 questions
0
votes
1 answer

Log cat unknown error on while running AccessibilityService in API 16 android

I'm having an unknown logcat warning and error message shown while I tried to run my code in API 16 of android. It's working in Android L. I'm trying to fetch notifications using the code. Could anyone know this. Please help. 07-09 20:52:45.850 …
0
votes
2 answers

Cannot access notification through Android AccessibilityService

I am trying to access the notifications on my android phone using the AccessibilityService. I tried making a service and calling it from the main activity. I've also added meta for the service. It's not working. I cannot see the triggering of the…
0
votes
1 answer

Get the Name of the App using Accessibility Service in Android

I'm working in Accessibility Service. i need to get the app name using Accessibility Service. i have studied the documentation of the Accessibility Service in developer's of Android website. but there is no mention about getting the app name using…
Happy
  • 1,031
  • 10
  • 26
0
votes
1 answer

Convert String to AccessibilityNodeInfo in android

I'm working with accessibility in android. I've one doubt that I've tried searching google and stack over flow. but I can't get it. The problem is, when I'm focusing the edit text field I can get the source of a edit text field by using…
Happy
  • 1,031
  • 10
  • 26
0
votes
0 answers

How to get source of Child Node of an Activity Using Accessibility in Android

i am trying to get a source of all nodes in a activity using accessibility in android. first when user focuses on a EditText it will get the parent of the Focused EditText. Using the parent i will get the all child element of an Activity. i can get…
user3546693
  • 364
  • 3
  • 18
0
votes
1 answer

How to identify a Login Page of a App from my app using Accessibility in android

Hi. Using Accessibility, i am trying to auto fill username & password of an any app from my app which is managing username & password of all apps like dashlane. i found one way to auto fill field value using Action_Paste. when user starts to…
0
votes
0 answers

Android Accessibilty Service: onAccessibilityEvent() Method isn't fired all the time

Preface: Device: Nexus 5, Android Lollipop Put simply, My App does capture the Accessibility events but capture rate is only around 93%. This might look good but it is unacceptable for the kind of functionality my App is designed for. My code: …
Dilnoor Singh
  • 518
  • 5
  • 16
0
votes
1 answer

How to get the URLs of the notifications?

I have added an AccessibilityService to get the notification messages. And I do get all the notification messages now. My Question is : Is there any way to get the action url in the PendingIntent in the below code? if (event.getEventType() ==…
0
votes
1 answer

Pass data to view through Accessibility service – Android

I want to change text inside EditText within Accessibility service. My code is: @Override public void onAccessibilityEvent(AccessibilityEvent event) { final AccessibilityNodeInfo source = event.getSource(); if (source != null &…
0
votes
1 answer

Android AccessibilityService on off status

I am using AccessibilityService to monitor notifications. I followed this and this. Finally, it works and I get to know about new notifications. But, to Connect the AccessibilityService I need to ask user to enable it from the…
abhi
  • 1,412
  • 19
  • 25
0
votes
1 answer

Android Accessibility Service Focus EditText

I am writing an accessibility service. I've been trying to focus EditText fields in a way that pops up the software keyboard and I have been unsuccessful. I am able to get the cursor into the EditText field, but the soft keyboard doesn't pop up. …
MobA11y
  • 18,425
  • 3
  • 49
  • 76
0
votes
1 answer

How to activate AccessibilityService on my android?

I created an Accessibility Service for obtain notifications, but this service is not run, I read some any questions in this forum and read a possible solution, in this question one user posts a possible solution what is activate service on android…
0
votes
1 answer

Why localhost webview content does not enable TalkBack in Android

In my Android application I have loaded a web content in WebView.After enabling TalkBack feature the webview contents respond to user touching and it speaks the webview content.But when I loaded a localhost website in WebView, TalkBack does not…
0
votes
1 answer

when the spinner is clicked, it says " Showing 2 items" while displaying dropdown view. How to override this talkback for spinner?

while I implement Spinner for creating dropdown view, the first element is always shown in main view as well as in dropdown list. so I hid it by overriding getDropdrownView(). but problem arises in talkback. Problem is: when I click on spinner, it…
0
votes
0 answers

I want to smiley providing app to whatsapp

I'm looking to create an app to whatsapp in which i need to launch a window with smileyset (like chathead in facebook messenger) .I did it but when i opened whatsapp conversation a small button of smiley set will displayed and it wont disappear when…