| | |
| | | [Android.App.Application(Theme = "@style/MyTheme")] |
| | | public class Application : Android.App.Application, Android.App.Application.IActivityLifecycleCallbacks |
| | | { |
| | | |
| | | static void reStartApp(Android.App.Application application) |
| | | { |
| | | var intent = new Intent(application, typeof(BaseActivity)); |
| | |
| | | } |
| | | |
| | | base.OnCreate(); |
| | | |
| | | Language.CurrentLanguage = "Chinese"; |
| | | Locale locale1 = Locale.Default; |
| | | var localeList = Resources.Configuration.Locale; |
| | | Console.WriteLine("当前语言:" + localeList.Language); |
| | | if (localeList.Language == "zh") |
| | | { |
| | | Language.CurrentLanguage = "Chinese"; |
| | | } |
| | | else |
| | | { |
| | | Language.CurrentLanguage = "English"; |
| | | } |
| | | |
| | | RegisterActivityLifecycleCallbacks(this); |
| | | } |
| | | |