public final class SpellCheckerInfo
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.view.textservice.SpellCheckerInfo |
该类用于指定拼写检查器的元信息。
Inherited constants |
---|
From interface android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<SpellCheckerInfo> |
CREATOR 用于使这个类可以分类。 |
Public methods |
|
---|---|
int |
describeContents() 用于使这个类可以分类。 |
ComponentName |
getComponent() 返回实现的服务的组件。 |
String |
getId() 为此拼写检查器返回一个唯一的ID。 |
String |
getPackageName() 返回实现这个的.apk包。 |
ServiceInfo |
getServiceInfo() 返回有关实施此拼写检查器的服务的原始信息。 |
String |
getSettingsActivity() 返回提供设置UI的活动的类名称。 |
SpellCheckerSubtype |
getSubtypeAt(int index) 返回指定索引处的子类型。 |
int |
getSubtypeCount() 返回子类型的计数。 |
Drawable |
loadIcon(PackageManager pm) 加载此拼写检查器的用户显示图标。 |
CharSequence |
loadLabel(PackageManager pm) 加载此拼写检查器的用户显示标签。 |
void |
writeToParcel(Parcel dest, int flags) 用于将此对象打包成 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
|
From interface android.os.Parcelable
|
int describeContents ()
用于使这个类可以分类。
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
ServiceInfo getServiceInfo ()
返回有关实施此拼写检查器的服务的原始信息。 不要修改返回的对象。
Returns | |
---|---|
ServiceInfo |
String getSettingsActivity ()
返回提供设置UI的活动的类名称。 您可以启动这项活动与来启动它Intent
,其作用主要是与一个明确ComponentName
组成getPackageName()
这里返回的类名。
如果没有设置活动,则返回null。
Returns | |
---|---|
String |
SpellCheckerSubtype getSubtypeAt (int index)
返回指定索引处的子类型。
Parameters | |
---|---|
index |
int : the index of the subtype to return. |
Returns | |
---|---|
SpellCheckerSubtype |
Drawable loadIcon (PackageManager pm)
加载此拼写检查器的用户显示图标。
Parameters | |
---|---|
pm |
PackageManager : Supply a PackageManager used to load the spell checker's resources. |
Returns | |
---|---|
Drawable |
CharSequence loadLabel (PackageManager pm)
加载此拼写检查器的用户显示标签。
Parameters | |
---|---|
pm |
PackageManager : Supply a PackageManager used to load the spell checker's resources. |
Returns | |
---|---|
CharSequence |
void writeToParcel (Parcel dest, int flags)
用于将此对象打包成 Parcel
。
Parameters | |
---|---|
dest |
Parcel : The Parcel to be written. |
flags |
int : The flags used for parceling. |