List of usage examples for android.content.res Configuration getLocales
public @NonNull LocaleList getLocales()
From source file:com.vrem.wifianalyzer.settings.CountryPreference.java
@NonNull @SuppressWarnings("deprecation") private static Locale getLocale(@NonNull Configuration config) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { return config.getLocales().get(0); }//from www .j a v a 2s .com return config.locale; }