Advertisement
minafaw3

MyContextWrapper

Sep 21st, 2017
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1.  
  2. using Android.Content;
  3. using Android.Content.Res;
  4. using Android.OS;
  5. using Java.Util;
  6. using System.Globalization;
  7. using System.Threading;
  8.  
  9. namespace ReadyApps.Xamarin.Framework.Droid
  10. {
  11. public class MyContextWrapper :
  12. {
  13. private Context mContext;
  14. public MyContextWrapper(Context context) : base(context)
  15. {
  16. mContext = context;
  17. }
  18. public ContextWrapper Wrap(Locale newLocale)
  19. {
  20. var res = mContext.Resources;
  21. Configuration configuration = res.Configuration;
  22.  
  23. if (VersionUtils.isAfter24())
  24. {
  25. configuration.SetLocale(newLocale);
  26.  
  27. var localeList = new LocaleList(newLocale);
  28. LocaleList.Default = localeList;
  29. configuration.Locales = localeList;
  30.  
  31. mContext = mContext.CreateConfigurationContext(configuration);
  32.  
  33. }
  34. else if (VersionUtils.isAfter17())
  35. {
  36. configuration.SetLocale(newLocale);
  37. mContext = mContext.CreateConfigurationContext(configuration);
  38.  
  39. }
  40. else
  41. {
  42. configuration.Locale = newLocale;
  43. res.UpdateConfiguration(configuration, res.DisplayMetrics);
  44. }
  45.  
  46. return new ContextWrapper(mContext);
  47. }
  48. }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement