EXTRA_DATA_TEXT_CHARACTER_LOCATION_KEY
val EXTRA_DATA_TEXT_CHARACTER_LOCATION_KEY: String = "android.core.view.accessibility.extra.DATA_TEXT_CHARACTER_LOCATION_KEY"(source)
Key used to request and locate extra data for text character location. This key requests that an array of android.graphics.RectFs be added to the extras. This request is made with refreshWithExtraData. The arguments taken by this request are two integers: EXTRA_DATA_TEXT_CHARACTER_LOCATION_ARG_START_INDEX and EXTRA_DATA_TEXT_CHARACTER_LOCATION_ARG_LENGTH. The starting index must be valid inside the CharSequence returned by getText, and the length must be positive.
The data can be retrieved from the Bundle
returned by getExtras using this string as a key for getParcelableArray. The android.graphics.RectF will be null for characters that either do not exist or are off the screen. {@see #refreshWithExtraData(String, Bundle)}