Search in sources :

Example 86 with LocaleList

use of android.os.LocaleList in project android_frameworks_base by crdroidandroid.

the class Configuration method readFromParcel.

public void readFromParcel(Parcel source) {
    fontScale = source.readFloat();
    mcc = source.readInt();
    mnc = source.readInt();
    final int localeListSize = source.readInt();
    final Locale[] localeArray = new Locale[localeListSize];
    for (int i = 0; i < localeListSize; ++i) {
        localeArray[i] = Locale.forLanguageTag(source.readString());
    }
    mLocaleList = new LocaleList(localeArray);
    locale = mLocaleList.get(0);
    userSetLocale = (source.readInt() == 1);
    touchscreen = source.readInt();
    keyboard = source.readInt();
    keyboardHidden = source.readInt();
    hardKeyboardHidden = source.readInt();
    navigation = source.readInt();
    navigationHidden = source.readInt();
    orientation = source.readInt();
    screenLayout = source.readInt();
    uiMode = source.readInt();
    screenWidthDp = source.readInt();
    screenHeightDp = source.readInt();
    smallestScreenWidthDp = source.readInt();
    densityDpi = source.readInt();
    compatScreenWidthDp = source.readInt();
    compatScreenHeightDp = source.readInt();
    compatSmallestScreenWidthDp = source.readInt();
    seq = source.readInt();
}
Also used : Locale(java.util.Locale) LocaleList(android.os.LocaleList)

Example 87 with LocaleList

use of android.os.LocaleList in project android_frameworks_base by crdroidandroid.

the class ActivityThread method updateLocaleListFromAppContext.

/**
     * The LocaleList set for the app's resources may have been shuffled so that the preferred
     * Locale is at position 0. We must find the index of this preferred Locale in the
     * original LocaleList.
     */
private void updateLocaleListFromAppContext(Context context, LocaleList newLocaleList) {
    final Locale bestLocale = context.getResources().getConfiguration().getLocales().get(0);
    final int newLocaleListSize = newLocaleList.size();
    for (int i = 0; i < newLocaleListSize; i++) {
        if (bestLocale.equals(newLocaleList.get(i))) {
            LocaleList.setDefault(newLocaleList, i);
            return;
        }
    }
    // The app may have overridden the LocaleList with its own Locale
    // (not present in the available list). Push the chosen Locale
    // to the front of the list.
    LocaleList.setDefault(new LocaleList(bestLocale, newLocaleList));
}
Also used : Locale(java.util.Locale) LocaleList(android.os.LocaleList)

Example 88 with LocaleList

use of android.os.LocaleList in project android_frameworks_base by crdroidandroid.

the class InputMethodUtils method getImplicitlyApplicableSubtypesLocked.

@VisibleForTesting
public static ArrayList<InputMethodSubtype> getImplicitlyApplicableSubtypesLocked(Resources res, InputMethodInfo imi) {
    final LocaleList systemLocales = res.getConfiguration().getLocales();
    synchronized (sCacheLock) {
        // it does not check if subtypes are also identical.
        if (systemLocales.equals(sCachedSystemLocales) && sCachedInputMethodInfo == imi) {
            return new ArrayList<>(sCachedResult);
        }
    }
    // Note: Only resource info in "res" is used in getImplicitlyApplicableSubtypesLockedImpl().
    // TODO: Refactor getImplicitlyApplicableSubtypesLockedImpl() so that it can receive
    // LocaleList rather than Resource.
    final ArrayList<InputMethodSubtype> result = getImplicitlyApplicableSubtypesLockedImpl(res, imi);
    synchronized (sCacheLock) {
        // Both LocaleList and InputMethodInfo are immutable. No need to copy them here.
        sCachedSystemLocales = systemLocales;
        sCachedInputMethodInfo = imi;
        sCachedResult = new ArrayList<>(result);
    }
    return result;
}
Also used : LocaleList(android.os.LocaleList) InputMethodSubtype(android.view.inputmethod.InputMethodSubtype) ArrayList(java.util.ArrayList) VisibleForTesting(com.android.internal.annotations.VisibleForTesting)

Example 89 with LocaleList

use of android.os.LocaleList in project android_frameworks_base by crdroidandroid.

the class ResourcesLocaleTest method testSelectFirstSupportedLanguage.

@SmallTest
public void testSelectFirstSupportedLanguage() throws Exception {
    final Resources resources = createResourcesWithApk(R.raw.locales);
    ensureNoLanguage(resources, "fr");
    final LocaleList preferredLocales = LocaleList.forLanguageTags("fr-FR,pl-PL");
    final Configuration config = new Configuration();
    config.setLocales(preferredLocales);
    resources.updateConfiguration(config, null);
    // The APK we loaded has default and Polish languages. We expect the Polish language to
    // therefore be chosen.
    assertEquals(Locale.forLanguageTag("pl-PL"), resources.getConfiguration().getLocales().get(0));
}
Also used : LocaleList(android.os.LocaleList) SmallTest(android.support.test.filters.SmallTest)

Example 90 with LocaleList

use of android.os.LocaleList in project android_frameworks_base by crdroidandroid.

the class LocaleUtilsTest method testFilterDoesNotMatchAnything.

@SmallTest
public void testFilterDoesNotMatchAnything() throws Exception {
    final ArrayList<Locale> availableLocales = new ArrayList<>();
    availableLocales.add(Locale.forLanguageTag("en-US"));
    availableLocales.add(Locale.forLanguageTag("fr-CA"));
    availableLocales.add(Locale.forLanguageTag("in"));
    availableLocales.add(Locale.forLanguageTag("ja"));
    availableLocales.add(Locale.forLanguageTag("fil"));
    final LocaleList preferredLocales = LocaleList.forLanguageTags("zh-Hans-TW");
    final ArrayList<Locale> dest = new ArrayList<>();
    LocaleUtils.filterByLanguage(availableLocales, sIdentityMapper, preferredLocales, dest);
    assertEquals(0, dest.size());
}
Also used : Locale(java.util.Locale) LocaleList(android.os.LocaleList) ArrayList(java.util.ArrayList) SmallTest(android.test.suitebuilder.annotation.SmallTest)

Aggregations

LocaleList (android.os.LocaleList)91 Locale (java.util.Locale)39 ArrayList (java.util.ArrayList)31 SmallTest (android.test.suitebuilder.annotation.SmallTest)15 Resources (android.content.res.Resources)10 KeyboardLayout (android.hardware.input.KeyboardLayout)10 SmallTest (android.support.test.filters.SmallTest)10 InputMethodSubtype (android.view.inputmethod.InputMethodSubtype)10 NameNotFoundException (android.content.pm.PackageManager.NameNotFoundException)7 RemoteException (android.os.RemoteException)7 FileNotFoundException (java.io.FileNotFoundException)7 IOException (java.io.IOException)7 Context (android.content.Context)5 Config (android.content.pm.ActivityInfo.Config)5 NotFoundException (android.content.res.Resources.NotFoundException)5 TypedArray (android.content.res.TypedArray)5 XmlResourceParser (android.content.res.XmlResourceParser)5 Bundle (android.os.Bundle)5 SettingNotFoundException (android.provider.Settings.SettingNotFoundException)5 VisibleForTesting (com.android.internal.annotations.VisibleForTesting)5