Most visited

Recently visited

Added in API level 1

AutoText

public class AutoText
extends Object

java.lang.Object
   ↳ android.text.AutoText


该课程访问纠正字典以频繁拼写错误。

Summary

Public methods

static String get(CharSequence src, int start, int end, View view)

为指定范围的文本检索可能的拼写更正。

static int getSize(View view)

返回自动文本字典的大小。

Inherited methods

From class java.lang.Object

Public methods

get

Added in API level 1
String get (CharSequence src, 
                int start, 
                int end, 
                View view)

为指定范围的文本检索可能的拼写更正。 如果没有找到更正,则返回null。 该视图用于获取当前的语言环境和资源。

Parameters
src CharSequence
start int
end int
view View
Returns
String

getSize

Added in API level 3
int getSize (View view)

返回自动文本字典的大小。 如果没有可用于当前语言环境的自动更正数据,则返回值可以为零。

Parameters
view View: used to retrieve the current Locale and Resources.
Returns
int the number of entries in the auto text dictionary

Hooray!