在 Using MvvmCross from content providers and activities 问题中,我想知道如何初始化 MvvmCross 系统。
给出的答案当时有效,但随着 MvvmCross 最近的更新,我使用的函数 (MvxAndroidSetupSingleton.GetOrCreateSetup()) 已被弃用。
我现在已经改变了我的初始化,到目前为止它似乎可以工作,但它是否正确和正确?我应该以不同的方式做事来提高便携性吗?
安装类,在 Android 平台特定的 DLL 中:
public class Setup
: MvxAndroidSetup
{
public Setup(Context applicationContext)
: base(applicationContext)
{
}
protected override IMvxApplication CreateApp()
{
// Create logger class which can be used from now on
var logger = new AndroidLogger();
Mvx.RegisterSingleton(typeof(ILogger), logger);
var app = new App();
InitialisePlatformSpecificStuff();
return app;
}
private void InitialisePlatformSpecificStuff()
{
// For instance register platform specific classes with IoC
}
}
和我在便携式核心库中的 App 类:
public class App
: MvxApplication
{
public App()
{
}
public override void Initialize()
{
base.Initialize();
AppDomain.CurrentDomain.UnhandledException += UnhandledExceptionHandler;
InitialisePlugins();
InitaliseServices();
InitialiseStartNavigation();
}
private void InitaliseServices()
{
CreatableTypes().EndingWith("Service").AsInterfaces().RegisterAsLazySingleton();
}
private void InitialiseStartNavigation()
{
}
private void InitialisePlugins()
{
// initialise any plugins where are required at app startup
// e.g. Cirrious.MvvmCross.Plugins.Visibility.PluginLoader.Instance.EnsureLoaded();
}
public static void UnhandledExceptionHandler(object sender, UnhandledExceptionEventArgs e)
{
// Log exception info etc
}
最佳答案
需要对 MvvmCross 初始化进行更改,以帮助用户避免“多闪屏”问题 - 请参阅 https://github.com/slodge/MvvmCross/issues/274 。
这些变化的核心是:
因此,您可以看到此更改删除了以下行:
- var setup = MvxAndroidSetupSingleton.GetOrCreateSetup(activity.ApplicationContext);
- setup.EnsureInitialized(androidView.GetType());
并将它们替换为:
+ var setupSingleton = MvxAndroidSetupSingleton.EnsureSingletonAvailable(activity.ApplicationContext);
+ setupSingleton.EnsureInitialized();
因此,您的更改将需要反射(reflect)相同的代码。
关于xamarin - MvvmCross 初始化,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17466140/