TalkBack(Accessibility) 활성화 여부
활성화 확인 int accessibilityEnabled = 0; try { accessibilityEnabled = Settings.Secure.getInt(context.getApplicationContext().getContentResolver(), Settings.Secure.ACCESSIBILITY_ENABLED); // accessibilityEnabled = 0:Off, 1:On } catch (Settings.SettingNotFoundException e) { } 활성화된 서비스 확인 String strEnabledServices = ""; if (accessibilityEnabled == 1) { strEnabledServices = Settings.Secure.getString(con..
2022.11.20