use of android.view.textservice.TextServicesManager in project android_frameworks_base by ParanoidAndroid.
the class TextView method updateTextServicesLocaleLocked.
private void updateTextServicesLocaleLocked() {
final TextServicesManager textServicesManager = (TextServicesManager) mContext.getSystemService(Context.TEXT_SERVICES_MANAGER_SERVICE);
final SpellCheckerSubtype subtype = textServicesManager.getCurrentSpellCheckerSubtype(true);
final Locale locale;
if (subtype != null) {
locale = SpellCheckerSubtype.constructLocaleFromString(subtype.getLocale());
} else {
locale = null;
}
mCurrentSpellCheckerLocaleCache = locale;
}
use of android.view.textservice.TextServicesManager in project android_frameworks_base by DirtyUnicorns.
the class TextView method updateTextServicesLocaleLocked.
private void updateTextServicesLocaleLocked() {
final TextServicesManager textServicesManager = (TextServicesManager) mContext.getSystemService(Context.TEXT_SERVICES_MANAGER_SERVICE);
final SpellCheckerSubtype subtype = textServicesManager.getCurrentSpellCheckerSubtype(true);
final Locale locale;
if (subtype != null) {
locale = subtype.getLocaleObject();
} else {
locale = null;
}
mCurrentSpellCheckerLocaleCache = locale;
}
Aggregations