问题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
}
答案 0 :(得分:3)
我使用的函数(MvxAndroidSetupSingleton.GetOrCreateSetup())已被弃用。
需要对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();
因此,您的更改需要反映相同的代码。