Android examples for User Interface:AccessibilityEvent
Return true if the accessibility service or touch exploration are enabled.
/*//from w w w. ja v a 2 s . co m * Copyright (C) 2015 Google Inc. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ //package com.java2s; import android.content.Context; import android.view.accessibility.AccessibilityManager; public class Main { /** * Return true if the accessibility service or touch exploration are enabled. */ public static boolean isTouchAccessiblityEnabled(Context context) { AccessibilityManager am = (AccessibilityManager) context .getSystemService(Context.ACCESSIBILITY_SERVICE); boolean isAccessibilityEnabled = am.isEnabled(); boolean isTouchExplorationEnabled = am.isTouchExplorationEnabled(); return isAccessibilityEnabled || isTouchExplorationEnabled; } }