Browsing Category
Xamarin
22 posts
List of Xamarin Android tutorials and examples to help you get started with Android programming using the Mono framework.
Upload Bitmap Image Using HTTP Multipart in Xamarin Android
In this post, we will take a look at what are the API's Xamarin Android facilitates to support multi part upload. For the sake of simplicity, in this example we will upload an bitmap image to server.
AlertDialog and DialogFragment Example in Xamarin Android
This example explains how to create AlertDialog and DialogFragment in Xamarin Android. Android supports several different ways to create a dialog such as AlertDialog and FragmentDialog.
LinearLayout Manager Tutorial in Xamarin Android
A LinearLayout manager is a most basic type of layout manager, that organizes its child views either horizontally or…
A Quick Introduction to View, ViewGroups and Layout Managers in Xamarin Android
Views and ViewGroups Everything that you see in an Android app is a View; buttons, labels, text boxes,…
Xamarin Mobile Application Development for Android – Second Edition Announced
Book titled “Xamarin Mobile Application Development for Android” – Second Edition is announced and is available to pre-order. This book is…
SharedPreferences Example in Xamarin Android
Shared preferences are persistence key/value data pairs, used to store primitive data pairs such as bool, float, int, string and long. The data saved into android preference are persisted across different user sessions and is private to the application it is created. Any other application cannot access to it.
Serializing .NET object using JSON.NET and ContractResolver example
JSON.NET is one of the popular, advanced and high-performance JSON framework for .NET. Here in this example we will look at following use cases for serializing .NET object into JSON String.
Consuming REST Web Service and Deserializing Response Using Json.NET in Xamarin Android
Consuming data from web services is the most common task and very integral part to most of the full-fledged mobile application. In this tutorial we will take a look into various key concepts and steps for consuming web service methods from Xamarin Android application.
Xamarin Android WebView Tutorial
In the course of this tutorial, we will take a look into using WebView in Xamarin.Android. This tutorial loads simple webpage on WebView and using WebViewClient.WebView is an android UI component that displays webpages.
JSON Feed Reader Application in Xamarin Android
This is an sample JSON feed reader application developed in Xamarin.Android platform. This app will fetch the recent posts…
ListView Example in Xamarin.Android
This post will walk you through crating a custom ListView in Xamarin.Android using list adapter. ListView is one…
Using SQLite.NET ORM in Xamarin Application
ORM stands for Object Relational Mapping. SQLite.NET ORM is an light weight and open source library that allows…
Data Storage Options in Xamarin
Most of the commercial mobile application uses local storage for large data processing and to improve efficiency. While…
Xamarin Learning Resources
Xamarin is a San Francisco, California based software company which provides commercial software development tools that leverage the…
Asynchronous Image Loading in Xamarin Android
This tutorial explains how to download image asynchronously in Xamarin.Android. In this example, we will downloading image using…
Android Login Screen Using Xamarin
In this tutorial we will see “How to create a login screen using Xamarin.Android”. This example assumes, you…
Creating a Splash Screen in Android Using Xamarin
In this article, we take a look into creating a splash screen in Android using Xamarin. A splash…
Action Bar Tabs Example in Xamarin
This example explains “How to create Action Bar Tabs in Xamarin.Android”. This example uses Fragment in combination with…
ShareActionProvider Example in Xamarin.Android
This example explains how to implement "share action in your action bar using ShareActionProvider class". ActionProvider is made available since Android 4.0 (API Level 14). An ActionProvider, once attached to a menu item in the action bar, handles both the appearance and behavior of that item
How to Start One Activity From Another in Xamarin Android
In this example we’ll look at how to create multiple activities and communicate between them. In this example we will create two activities and pass data between them.