Added in API level 1
AutoText
open class AutoText
kotlin.Any | |
↳ | android.text.AutoText |
This class accesses a dictionary of corrections to frequent misspellings.
Summary
Public methods | |
---|---|
open static String! |
get(src: CharSequence!, start: Int, end: Int, view: View!) Retrieves a possible spelling correction for the specified range of text. |
open static Int |
Returns the size of the auto text dictionary. |
Public methods
get
Added in API level 1
open static fun get(
src: CharSequence!,
start: Int,
end: Int,
view: View!
): String!
Retrieves a possible spelling correction for the specified range of text. Returns null if no correction can be found. The View is used to get the current Locale and Resources.
getSize
Added in API level 3
open static fun getSize(view: View!): Int
Returns the size of the auto text dictionary. The return value can be zero if there is no auto correction data available for the current locale.
Parameters | |
---|---|
view |
View!: used to retrieve the current Locale and Resources. |
Return | |
---|---|
Int |
the number of entries in the auto text dictionary |