Yearly Archives: 2015

img_xamarin

SimpleBackgroundTransfer

- - 0 Comments

SimpleBackgroundTransfer is a simple app that illustrates how to use background transfers. Right now this sample only works on iOS devices (not the simulator). This is a port of Apple’s WWDC2013 sample SimpleBackgroundTransfer.Link to Apple’s sample:https://developer.apple.com/downloads/index.action?name=WWDC%202013# Minimum License Requirement: Starter Author : https://github.com/olegoid. If you like this tutorial then you can...

img_xamarin

Todo

- - 0 Comments

Xamarin.Forms provides two solution templates for building cross-platform applications: PCL or Shared Project. This Todosample application is provided using both templates. The Xamarin.Forms application code is fundamentally the same, except where the database connection is created (because it requires a file-system reference to the SQLite data file). NOTE: Windows Phone...

img_xamarin

Multitasking

- - 0 Comments

Simple example of using a background thread to perform a long running task. Includes two examples: updating the UI thread on completion and starting tasks that run without a notification at the end. Author : https://github.com/olegoid. If you like this tutorial then you can download full copy of the code from github. ...

img_xamarin

FormsGallery

- - 0 Comments

This program displays all the views, cells, layouts, and pages available in Xamarin.Forms, one per page. If you open the solution in Xamarin Studio, it will not be able to load the Windows Phone project; and if you open the solution in Xamarin Studio under Windows, it will not be...

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...

img_xamarin

Hello World! Build your first Xamarin.Forms

- - 0 Comments

Xamarin.Forms is a cross-platform natively backed UI toolkit abstraction that allows developers to easily create user interfaces that can be shared across Android, iOS, and Windows Phone. The user interfaces are rendered using the native controls of the target platform, allowing Xamarin.Forms applications to retain the appropriate look and feel...

img_xamarin

How to use Label,Button and Image in Xamarin.Forms

- - 0 Comments

In our last tutorial we have seen how to create a Hello World app for basic understanding of XamarinForms.In this tutorial we are going to see some basic controls that we may need to create a functional app in real world. After we complete our tutorial it will look like...