Practical .NET

The 5 Essential Patterns in Xamarin Applications

If you're going to build smartphone applications using Xamarin there are five design patterns you'll need to get comfortable with (and good at using).

Back to WinForms
You'll need, for example, to start using the pattern Microsoft calls Model-View-Presenter (MVP). MVP is the default pattern used in Windows Forms, ASP.NET Web Forms and WPF applications (though, of course, you can use other patterns with all those frameworks). Creating native Android and iOS apps in Xamarin using the dedicated iOS/Android UI tools requires that you use the MVP model when building your application's pages.

Applying best practices is essential in MVP because it has several downsides. In MVP, page code contains multiple references to the widgets that make up the user interface: The names of the UI widgets are embedded in the application's code; page code spends much of its time reading and writing UI widgets' properties; page code is often embedded in event handlers tied to widget events.

This tight coupling creates two problems. First, of course, changes to the UI often ripple through the application code, forcing numerous changes in application code. Replacing a textbox widget that accepts a numeric value with a slider widget that generates a numeric value can result in significant changes to code because the two widgets have very different event and property APIs. Second, automated testing becomes very difficult.

To deal with these problems, the best practice in MVP is to put very little code in any individual page and, instead, have page code call methods in Standard Class Library projects. Moving code to a Standard Class Library has the added advantage of allowing you to share code among multiple projects. Recognizing the issues with automated testing in MVP, Xamarin tools include a UI-driven automated testing facility.

Beyond Widgets
While you must still use the MVP pattern if you're using Xamarin.Forms to generate the UI for iOS and/or Android applications, you can limit the amount of tightly coupled code using the Model-View-ViewModel (MVVM) pattern. Unlike the MVP pattern, in the MVVM pattern the UI references properties on a class containing the page code (the ViewModel) but that ViewModel class contains no references to the UI. Changes to the UI just require adjusting the names of the properties defined in the ViewModel class.

When using MVVM, you'll also want to investigate the Command Object pattern. This pattern allows you to bind UI events to ViewModel properties that hold Command objects. Those Command objects, in turn, act as wrappers for methods in the ViewModel.

You can't (yet) completely avoid the MVP pattern in Xamarin.Forms, but your MVP code can be as little as a single line of code to associate your UI with its ViewModel. In addition, there are some activities that will require you to use the MVP pattern when building an app (requesting runtime privileges in Android applications will force you into the MVP pattern, for example). However, those are the exceptions rather than the typical case.

Communicating Between Models
All these patterns can make it difficult to communicate between the pages that make up a smartphone application. The various platforms allow you to pass values between pages as the user navigates from one to another (though you may be limited to the simple data types -- strings, dates, integers and so on -- in some platforms). However, sharing data among pages can become awkward if the pages aren't directly related.

If, for example, you're holding common code in a .NET Standard Library project you'll find that you don't have access the ConfigurationManager object, the typical tool for holding common data like connection strings and URLs. Also not available in Standard Library projects is the MemoryCache object for holding shared data. And, at least for now, the application-wide DEBUG constant doesn't seem to work in Standard Libraries (this may itself be a bug).

There are a couple of patterns that solve these problems. Xamarin.Forms provides support for the Publish/Subscribe pattern through MessagingCenter, for example. This allows one part of your application (your Preferences page) to publish a notice to other parts of the application when "something happens" (for example, the user changing a display option). The main page of the application can subscribe to the Preference page's notifications so that it knows when it must re-arrange its display to reflect a change in the user's preferences.

Sharing data among pages can also be handled through the Singleton pattern. While the Singleton pattern is easy to misuse (some call it "anti-pattern") it makes sense in the single-user environment of a smartphone application when used as a property-rich object holding resources that either never change over the life of the application or are shared among pages.

The easiest way to implement the Singleton pattern is through a static class that exposes properties. These properties can hold constant values including, for example, the URL of a Web Service (or a DEBUG constant). This static class can also have a property that returns a cached object created the first time the property is accessed. This cached object can then hold data retrieved by different pages but, because the holding class itself is static, the cached object provided by the holding class is shared among all pages.

More patterns than these will be required by any application that's more than a demo. However, these five patterns (MVP, MVVM, Command, Publish/Subscribe and Singleton) are the ones that you'll need in virtually every smartphone application you build.

About the Author

Peter Vogel is a system architect and principal in PH&V Information Services. PH&V provides full-stack consulting from UX design through object modeling to database design. Peter tweets about his VSM columns with the hashtag #vogelarticles. His blog posts on user experience design can be found at http://blog.learningtree.com/tag/ui/.

comments powered by Disqus

Featured

  • Creating Reactive Applications in .NET

    In modern applications, data is being retrieved in asynchronous, real-time streams, as traditional pull requests where the clients asks for data from the server are becoming a thing of the past.

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

Subscribe on YouTube