android.view.accessibility.AccessibilityManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
The newest version!
package android.view.accessibility;
public final class AccessibilityManager
{
public static interface AccessibilityStateChangeListener
{
public abstract void onAccessibilityStateChanged(boolean enabled);
}
AccessibilityManager() { throw new RuntimeException("Stub!"); }
public boolean isEnabled() { throw new RuntimeException("Stub!"); }
public boolean isTouchExplorationEnabled() { throw new RuntimeException("Stub!"); }
public void sendAccessibilityEvent(android.view.accessibility.AccessibilityEvent event) { throw new RuntimeException("Stub!"); }
public void interrupt() { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public java.util.List getAccessibilityServiceList() { throw new RuntimeException("Stub!"); }
public java.util.List getInstalledAccessibilityServiceList() { throw new RuntimeException("Stub!"); }
public java.util.List getEnabledAccessibilityServiceList(int feedbackTypeFlags) { throw new RuntimeException("Stub!"); }
public boolean addAccessibilityStateChangeListener(android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener listener) { throw new RuntimeException("Stub!"); }
public boolean removeAccessibilityStateChangeListener(android.view.accessibility.AccessibilityManager.AccessibilityStateChangeListener listener) { throw new RuntimeException("Stub!"); }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy