How to check if closed captioning is selected on Android accessibility settings -
is possible check if closed captioning enabled user in settings --> accessibility section of android phone? want check if closed captioning enabled/disabled in accessibility.
yes it's possible (since api level 19).
you can check captioning state isenabled() method of captioningmanager.
captioningmanager captioningmanager = (captioningmanager) context.getsystemservice(context.captioning_service); if(captioningmanager.isenabled()){ //do stuff }