Xamarin: Don’t Miss Mythbuster’s Grant Imahara at Xamarin Evolve 2016

Grant Imahara, former host of “Mythbusters” and special effects animatronics guru for George Lucas’ Industrial Light + Magic, will be bringing his perspective on the intersection of entertainment and technology to Xamarin Evolve 2016. You won’t want to miss his session, where he’ll share secrets from the set of Mythbusters (with exclusive behind-the-scenes stores and […]

The post Don’t Miss Mythbuster’s Grant Imahara at Xamarin Evolve 2016 appeared first on Xamarin Blog.

Details

Xamarin: Geolocation for iOS, Android, and Windows Made Easy

Geolocation takes advantage of device-specific location services to help provide a location for a particular user at any given point in time. There are many common use cases for using geolocation in mobile apps, such as displaying weather data for a user’s location, navigating a user to a destination, or helping find a restaurant nearby. Even if you […]

The post Geolocation for iOS, Android, and Windows Made Easy appeared first on Xamarin Blog.

Details

Xamarin: Introduction to Data Binding

Writing code that sets the properties of user interface controls to the required data is a tried-and-tested technique for wiring a user interface (UI) to a data source, but can result in having to write lengthy and repetitive code to ensure that the UI is correctly synchronized. Writing code to wire a user interface to […]

The post Introduction to Data Binding appeared first on Xamarin Blog.

Details

Wallace B. (Wally) McClure: Xamarin 4 Overview – Article

Url: https://visualstudiomagazine.com/articles/2016/01/11/xamarin-4-improvements-upgrading.aspx

November 17, 2015 was a great day for mobile development. That is the day that Xamarin shipped the latest major update to its mobile development suite of tools, and with this one there’s lots to like:

  • Xamarin.Forms. With Xamarin.Forms 2.0, there are updates for iOS9, Material Design, pre-compiled screens, preview support for Universal Windows Platform apps, and gestures support like pinch.
  • Visual Studio iOS Support. Xamarin has reengineered for iOS support for Visual Studio in a way that should improve iOS app reliability.
  • Mono Upgrade. Microsoft has open sourced portions of the .NET codebase, and what that, Xamarin has incorporated the open source code into the Mono framework. The move should improve the compatibility and performance of the framework.
  • The iOS designer. The iOS designer can now load and save XIB files in addition to storyboard files.
  • The Android designer. The Android designer now supports Android Material Design.
  • Xamarin Test Cloud. To support the Xamarin Test Cloud and its 2,000+ devices that are accessible to developers, Xamarin has introduced a preview tool named the Xamarin Test Recorder, Xamarin.UITest 1.0, and Xamarin Insights, has been released with free crash reporting for all Xamarin customers (and, finally, additional plans for users).

PS. I was told that Listing 5 should have the following change:

protected override void OnCreate(Bundle bundle)
        {
            FormsAppCompatActivity.ToolbarResource = Resource.Layout.toolbar;
            FormsAppCompatActivity.TabLayoutResource = Resource.Layout.tabs;
            base.OnCreate(bundle); 
            global::Xamarin.Forms.Forms.Init(this, bundle); LoadApplication(new App()); 
}
Details

Xamarin: Connect with your users with Google Search and App Indexing

How do you keep users engaged and coming back for more once your app is installed on a their devices? Did you know that, according to Google, on average only 26% of apps installed on a user’s devices are used on a daily basis? There are several innovative ways to drive users back to your […]

The post Connect with your users with Google Search and App Indexing appeared first on Xamarin Blog.

Details