Stay organized with collections Save and categorize content based on your preferences.

public final class MagnificationConfig
extends Object implements Parcelable



This class describes the magnification config for AccessibilityService to control the magnification.

When the magnification config uses MAGNIFICATION_MODE_DEFAULT, AccessibilityService will be able to control the activated magnifier on the display. If there is no magnifier activated, it controls the last-activated magnification mode. If there is no magnifier activated before, it controls full-screen magnifier by default.

When the magnification config uses MAGNIFICATION_MODE_FULLSCREEN. AccessibilityService will be able to control full-screen magnifier on the display.

When the magnification config uses MAGNIFICATION_MODE_WINDOW and the platform supports PackageManager.FEATURE_WINDOW_MAGNIFICATION feature. AccessibilityService will be able to control window magnifier on the display.

If the other magnification configs, scale centerX and centerY, are not set by the Builder, the configs should be current values or default values. And the center position ordinarily is the center of the screen.

Summary

Nested classes

class MagnificationConfig.Builder

Builder for creating MagnificationConfig objects. 

Constants

int MAGNIFICATION_MODE_DEFAULT

The controlling magnification mode.

int MAGNIFICATION_MODE_FULLSCREEN

The controlling magnification mode.

int MAGNIFICATION_MODE_WINDOW

The controlling magnification mode.

Inherited constants

From interface android.os.Parcelable

int CONTENTS_FILE_DESCRIPTOR

Descriptor bit used with describeContents(): indicates that the Parcelable object's flattened representation includes a file descriptor.

int PARCELABLE_WRITE_RETURN_VALUE

Flag for use with writeToParcel(Parcel, int): the object being written is a return value, that is the result of a function such as "Parcelable someFunction()", "void someFunction(out Parcelable)", or "void someFunction(inout Parcelable)".

Fields

public static final Creator<MagnificationConfig> CREATOR

Public methods

int describeContents()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

float getCenterX()

Returns the screen-relative X coordinate of the center of the magnification viewport.

float getCenterY()

Returns the screen-relative Y coordinate of the center of the magnification viewport.

int getMode()

Returns the magnification mode that is the current activated mode or the controlling mode of the config.

float getScale()

Returns the magnification scale of the controlling magnifier

String toString()

Returns a string representation of the object.

void writeToParcel(Parcel parcel, int flags)

Flatten this object in to a Parcel.

Inherited methods

From class java.lang.Object

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

From interface android.os.Parcelable

abstract int describeContents()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

abstract void writeToParcel(Parcel dest, int flags)

Flatten this object in to a Parcel.

Constants

MAGNIFICATION_MODE_DEFAULT

Added in API level 33

public static final int MAGNIFICATION_MODE_DEFAULT

The controlling magnification mode. It controls the activated magnifier.

Constant Value: 0 (0x00000000)

MAGNIFICATION_MODE_FULLSCREEN

Added in API level 33

public static final int MAGNIFICATION_MODE_FULLSCREEN

The controlling magnification mode. It controls full-screen magnifier.

Constant Value: 1 (0x00000001)

MAGNIFICATION_MODE_WINDOW

Added in API level 33

public static final int MAGNIFICATION_MODE_WINDOW

The controlling magnification mode. It is valid if the platform supports PackageManager.FEATURE_WINDOW_MAGNIFICATION feature.

Constant Value: 2 (0x00000002)

Fields

CREATOR

Added in API level 33

public static final Creator<MagnificationConfig> CREATOR

See also:

Public methods

describeContents

Added in API level 33

public int describeContents ()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel, int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or CONTENTS_FILE_DESCRIPTOR

getCenterX

Added in API level 33

public float getCenterX ()

Returns the screen-relative X coordinate of the center of the magnification viewport.

Returns
float the X coordinate. If the controlling magnifier is MAGNIFICATION_MODE_WINDOW but not enabled, it returns Float#NaN. If the controlling magnifier is MAGNIFICATION_MODE_FULLSCREEN but not enabled, it returns 0

getCenterY

Added in API level 33

public float getCenterY ()

Returns the screen-relative Y coordinate of the center of the magnification viewport.

Returns
float the Y coordinate If the controlling magnifier is MAGNIFICATION_MODE_WINDOW but not enabled, it returns Float#NaN. If the controlling magnifier is MAGNIFICATION_MODE_FULLSCREEN but not enabled, it returns 0

getMode

Added in API level 33

public int getMode ()

Returns the magnification mode that is the current activated mode or the controlling mode of the config.

Returns
int The magnification mode

getScale

Added in API level 33

public float getScale ()

Returns the magnification scale of the controlling magnifier

Returns
float the scale If the controlling magnifier is not activated, it returns 1 by default

toString

Added in API level 33

public String toString ()

Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object. The result should be a concise but informative representation that is easy for a person to read. It is recommended that all subclasses override this method.

The toString method for class Object returns a string consisting of the name of the class of which the object is an instance, the at-sign character `@', and the unsigned hexadecimal representation of the hash code of the object. In other words, this method returns a string equal to the value of:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 
Returns
String This value cannot be null.

writeToParcel

Added in API level 33

public void writeToParcel (Parcel parcel, 
                int flags)

Flatten this object in to a Parcel.

Parameters
parcel Parcel: This value cannot be null.
flags int: Additional flags about how the object should be written. May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of Parcelable.PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2023-02-08 UTC.