Obsolete
Status Update
Comments
an...@gmail.com <an...@gmail.com> #2
Just chiming in... talkback is off but when lightflow is enabled the talkback feature seems to activate in the browser. Super annoying.
th...@gmail.com <th...@gmail.com> #3
I've also had reports of where an additional accessibility service is added, lightflow's service is switched off, but it ends up running when the other apps accessibility is enabled. It certainly seems like there's a mismatch on some phones from what is select compared with what actually gets enabled.
nv...@gmail.com <nv...@gmail.com> #4
I've had a suggestion from a user to what may be a workaround.
"Even though TalkBack was "off", it was still doing it. So I went into settings under "TalkBack", and unclicked everything. Seemed to do the trick!"
"Even though TalkBack was "off", it was still doing it. So I went into settings under "TalkBack", and unclicked everything. Seemed to do the trick!"
pr...@gmail.com <pr...@gmail.com> #5
Still occurs even when Talk Back settings are all turned off
Nexus Galaxy - Android 4.01
Nexus Galaxy - Android 4.01
mi...@gmail.com <mi...@gmail.com> #6
Disable web scripts in accessibilty solves this issue.
mi...@gmail.com <mi...@gmail.com> #7
I noticed that worked yesterday ... but does disabling web scripts not have a negative impact on other things?
I don't want to fix one thing to then have another broken.
I don't want to fix one thing to then have another broken.
ki...@gmail.com <ki...@gmail.com> #8
That I don't know. I haven't encountered any problems because of it, but I also don't use the browser very much. I have not seen a problem with apps either.
ga...@gmail.com <ga...@gmail.com> #9
I've seen similar behavior on ICS; the browser keeps using accessibility scripts even if Talkback is switched off (as if the accessibility scripts in the browser access the TTS themselves instead of going through an accessibility service).
da...@gmail.com <da...@gmail.com> #10
Exactly the same problem for my app, this really annoys users as they have to go through a lot to desactivate the talking feature.
da...@gmail.com <da...@gmail.com> #11
Settings--> Accessibility--> Install web scripts--> Not allowed
Annoying, yes but easy to include it in a Help / Info portion of your App until a better alternative is found.
Annoying, yes but easy to include it in a Help / Info portion of your App until a better alternative is found.
mr...@googlemail.com <mr...@googlemail.com> #12
I'm running 4.02 on my GN, and when I open Google Books, it beings "reading aloud" every time I open a book. I turn off the feature within Google Books, but when I reopen the app, it reads aloud again.
I have Talkback turned off in accessibility settings. I've also turned off 'install web scripts' as I heard this was a workaround fix, but it did not work.
I have Talkback turned off in accessibility settings. I've also turned off 'install web scripts' as I heard this was a workaround fix, but it did not work.
ja...@gmail.com <ja...@gmail.com> #13
Yes, I get this too. VZW GNex 4.0.2. If I turn on lightflow in accesibility services I get the voice/reading accesibility service turning on (it doesn't show it's turned on, but it will read webpages etc.). But with lightflow turned off in the accesibility service menu, lightflow works fine.
ja...@gmail.com <ja...@gmail.com> #14
Same here ... so since Light Flow functions without it being turned on in Accessibility Services, why is it there? Hmmm
Description
As a workaround, I am currently using the following class
package android.support.v4.view;
public final class PagerAdapterPublicCompat {
private PagerAdapterPublicCompat() {}
public interface DataSetObserver extends PagerAdapter.DataSetObserver {}
public static void setDataSetObserver(PagerAdapter adapter, DataSetObserver observer) {
adapter.setDataSetObserver(observer);
}
}