Google is committed to advancing racial equity for Black communities. See how.
Added in API level 30

AccessibilityNodeInfo.ExtraRenderingInfo

public static final class AccessibilityNodeInfo.ExtraRenderingInfo
extends Object

java.lang.Object
   ↳ android.view.accessibility.AccessibilityNodeInfo.ExtraRenderingInfo


Class with information of a view useful to evaluate accessibility needs. Developers can refresh the node with the key AccessibilityNodeInfo.EXTRA_DATA_RENDERING_INFO_KEY to fetch the text size and unit if it is TextView and the height and the width of layout params from ViewGroup or TextView.

Summary

Public methods

Size getLayoutSize()

Gets the size object containing the height and the width of layout params if the node is a ViewGroup or a TextView, or null otherwise.

float getTextSizeInPx()

Gets the text size if the node is a TextView, or -1 otherwise.

int getTextSizeUnit()

Gets the text size unit if the node is a TextView, or -1 otherwise.

Inherited methods

Public methods

getLayoutSize

Added in API level 30
public Size getLayoutSize ()

Gets the size object containing the height and the width of layout params if the node is a ViewGroup or a TextView, or null otherwise. Useful for accessibility scanning tool to understand whether the text is scalable and fits the view or not.

Returns
Size a Size stores layout height and layout width of the view, or null otherwise.

getTextSizeInPx

Added in API level 30
public float getTextSizeInPx ()

Gets the text size if the node is a TextView, or -1 otherwise. Useful for accessibility scanning tool to understand whether the text is scalable and fits the view or not.

Returns
float the text size of a TextView, or -1 otherwise.

getTextSizeUnit

Added in API level 30
public int getTextSizeUnit ()

Gets the text size unit if the node is a TextView, or -1 otherwise. Text size returned from getTextSizeInPx() in raw pixels may scale by factors and convert from other units. Useful for accessibility scanning tool to understand whether the text is scalable and fits the view or not.

Returns
int the text size unit which type is TypedValue#TYPE_DIMENSION of a TextView, or -1 otherwise.