Accessibility Service's 'onaccessibilityevent' Function Not Being Invoked
I've run into a rather unfortunate problem with an application I'm developing that utilizes an accessibility service to do some special handling of notifications when they arrive o
Solution 1:
This happens probably for a android bug as it is solved in newer android version. when you power off onUnbind
is called. But on_boot_finished
onRebind
is not called, so your service remains useless. I have provided my solution to this problem here, please check this out.
Post a Comment for "Accessibility Service's 'onaccessibilityevent' Function Not Being Invoked"