Monthly Archives: April 2015

img_xamarin

TabbedPageDemo

- - 0 Comments

The Xamarin.Forms TabbedPage allows easy navigation among several similar pages. The actual implementation of TabbedPage is different on the iPhone, Android, and Windows Phone platform. As this sample program demonstrates, it is easiest to set theItemsSource property of TabbedPage to a collection of data items, and use data-binding in XAML...

img_xamarin

Background Location Demo

- - 0 Comments

This is a cross platform sample, which demonstrates how to properly perform location updates while the application is either Active or Backgrounded. Location data will be displayed on the screen when the app is running in the foreground, and in the application output when the app is operating in the...

img_xamarin

Footprint

- - 0 Comments

Display device location on a floorplan image. Using Core Location, we will take the position in Latitude/Longitude and project it onto a flat floorplan. We will demonstrate how to do the conversion from the Geographic coordinates system (Latitude/Longitude) to the floorplan’s image coordinate system (x,y) Note: For this sample to...

img_xamarin

Photo Filter

- - 0 Comments

This is an app extension sample showing you how to implement a Photo Editing extension. This extension allows the user to select a filter effect to apply to the photo or video selected in Photos or Camera. Instructions To enable the Photo Editing extension: Go to the iOS native Photo...

img_xamarin

Streaming Audio

- - 0 Comments

This sample illustrates how to use AudioToolbox’s AudioFileStream to parse an audio stream progressively and play the audio back. The audio is a creative commons MP3 file that is downloaded from a website using Mono’s HTTP stack. There are two samples: One plays as it streams, and does not attempt...

img_xamarin

AsyncDownloadImage

- - 0 Comments

This sample application demonstrates how to use the new Async/Await feature which is available in Xamarin.iOS 6.4. The sample downloads a large image from Internet using the DownloadDataTaskAsync in WebClient. Saving and resizing the image also use the new async feature. Author : https://github.com/olegoid. If you like this tutorial then you...