Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using Android.Content;
- using Android.Content.Res;
- using Android.OS;
- using Java.Util;
- using System.Globalization;
- using System.Threading;
- namespace ReadyApps.Xamarin.Framework.Droid
- {
- public class MyContextWrapper :
- {
- private Context mContext;
- public MyContextWrapper(Context context) : base(context)
- {
- mContext = context;
- }
- public ContextWrapper Wrap(Locale newLocale)
- {
- var res = mContext.Resources;
- Configuration configuration = res.Configuration;
- if (VersionUtils.isAfter24())
- {
- configuration.SetLocale(newLocale);
- var localeList = new LocaleList(newLocale);
- LocaleList.Default = localeList;
- configuration.Locales = localeList;
- mContext = mContext.CreateConfigurationContext(configuration);
- }
- else if (VersionUtils.isAfter17())
- {
- configuration.SetLocale(newLocale);
- mContext = mContext.CreateConfigurationContext(configuration);
- }
- else
- {
- configuration.Locale = newLocale;
- res.UpdateConfiguration(configuration, res.DisplayMetrics);
- }
- return new ContextWrapper(mContext);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement