[android-developers] Problems with talkback in ICS
I'm writing an accessibility app that seems to work ok on gingerbread builds and some ICS builds, but I seem to have problems with ICS samsung phones - particularly the galaxy nexus and s3. As soon as I enable the accessibility service registered for my app it seems to enable talkback for certain apps even though it's not switched on and I'm not doing any TTS.
Am I regsitering anything wrong here:
AccessibilityServiceInfo localAccessibilityServiceInfo = new AccessibilityServiceInfo();
localAccessibilityServiceInfo.eventTypes = AccessibilityEvent.TYPES_ALL_MASK;
localAccessibilityServiceInfo.notificationTimeout = 80L;
localAccessibilityServiceInfo.feedbackType = AccessibilityServiceInfo.FEEDBACK_ALL_MASK;
setServiceInfo(localAccessibilityServiceInfo);
localAccessibilityServiceInfo.eventTypes = AccessibilityEvent.TYPES_ALL_MASK;
localAccessibilityServiceInfo.notificationTimeout = 80L;
localAccessibilityServiceInfo.feedbackType = AccessibilityServiceInfo.FEEDBACK_ALL_MASK;
setServiceInfo(localAccessibilityServiceInfo);
I can't think what I can be doing wrong here. Any suggestions, it's been driving me mad.
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home