Introduction
This article demonstrates how to create Deep Link applications using C# and XML in Xamarin.Forms.
Let's take an email client as an example. When the user clicks the notification of an email she received, it opens a deep link that takes her to the email in the app. Last but not least, deep links also allow Google to index your app and link to specific sections of your app in searches. The deep link appears as a search result in Google and can take the user to a particular section of your app.
Let's start,
Step 1. Create a Xamarin. Forms app by going to File >> New >> Visual C# >> Cross Platform >> Cross-platform app (Xamarin. Native or Xamarin. Forms) and click OK. Project Name : DeepLinking
Now, select Blank App >> Xamarin.Forms >> .Portable Class Library and click OK.
Step 2. After the project creation, add the following Nuget Packages for your projects. Open Solution Explorer >> right click on Solution Explorer and select "Manage NuGet packages for the solution".
Now, select the following NuGet packages and followed by select your project then click to Install it.
- SQLite-net-pcl
- SQLitePCL.bundle_green
- SQLitePCL.raw
- SQLitePCL.Raw.bundle_green
- SQLitePCLRaw.core.
Step 3. Next, open Solution Explorer >> Project Name(Portable) >> Right-click to add >> New Folder. After that, open the New Folder (Folder Name: Data)
Next, open Solution Explorer >> Project Name(Portable) >> Data Folder >> Right-click to add >> Class. After that, open the Dialog Box Select Visual C# >> Class, and click ok (Class Name: TodoItemDatabase).
The select TodoItemDatabase.cs of this page. Just replace that with the following code.
TodoItemDatabase.cs code
using System.Collections.Generic;
using System.Linq;
using SQLite;
using Xamarin.Forms;
namespace DeepLinking
{
public class TodoItemDatabase
{
static readonly object locker = new object();
readonly SQLiteConnection database;
public TodoItemDatabase()
{
database = DependencyService.Get<ISQLite>().GetConnection(); // DB of the application
database.CreateTable<TodoItem>(); // Create table for the DB
}
public IEnumerable<TodoItem> GetItems()
{
lock (locker)
{
return database.Table<TodoItem>().ToList();
}
}
public TodoItem Find(string id)
{
lock (locker)
{
return database.Table<TodoItem>().FirstOrDefault(i => i.ID == id);
}
}
public int Insert(TodoItem item)
{
lock (locker)
{
return database.Insert(item);
}
}
public int Update(TodoItem item)
{
lock (locker)
{
return database.Update(item);
}
}
public int Delete(string id)
{
lock (locker)
{
return database.Delete<TodoItem>(id);
}
}
}
}
Similarly, add New Folder Models, and Views
Step 4. Next, go to Solution Explorer >> Project Name (Portable) >> Models >> Right-click to add >> Class. After that, open the Dialog Box Select Visual C# >> Class, and click ok (Class Name: TodoItem.cs). Select TodoItem.cs of this page. Just replace that with the following code.
TodoItem.cs Code
using SQLite;
namespace DeepLinking
{
public class TodoItem
{
[PrimaryKey]
public string ID { get; set; }
public string Name { get; set; }
public string Notes { get; set; }
public bool Done { get; set; }
}
}
Step 5. Next, go to Solution Explorer >> Project Name (Portable) >> Views >> Right-click to add >> two Class and twp Design Page. After that, open the Dialog Box and Select Visual C# >> Class, Xamarin. Form and click ok.
(Class Name: TodoItemPage.xaml, TodoItemPageCS.cs, TodoListPage,xaml and TodoListPageCS.cs). To select the given page, just replace it with the following code.
TodoItemPage.xaml Code
Design for TodoItemPage.
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="DeepLinking.TodoItemPage" Title="Todo Item">
<StackLayout VerticalOptions="StartAndExpand">
<Label Text="Name" />
<Entry Text="{Binding Path=Name}" Placeholder="task name" />
<Label Text="Notes" />
<Entry Text="{Binding Path=Notes}" />
<Label Text="Done" />
<Switch IsToggled="{Binding Path=Done}" />
<Button Text="Save" Clicked="OnSaveActivated" />
<Button Text="Delete" Clicked="OnDeleteActivated" />
<Button Text="Cancel" Clicked="OnCancelActivated" />
</StackLayout>
</ContentPage>
TodoItemPage.xaml.cs Code
This code is used for the backend of the ItemPage.
using System;
using System.Net;
using Xamarin.Forms;
namespace DeepLinking
{
public partial class TodoItemPage : ContentPage
{
IAppLinkEntry appLink;
bool isNewItem;
public TodoItemPage() : this(false)
{
}
public TodoItemPage(bool isNew = false)
{
InitializeComponent();
isNewItem = isNew;
}
protected override void OnAppearing()
{
appLink = GetAppLink(BindingContext as TodoItem);
if (appLink != null)
{
appLink.IsLinkActive = true;
}
}
protected override void OnDisappearing()
{
if (appLink != null)
{
appLink.IsLinkActive = false;
}
}
async void OnSaveActivated(object sender, EventArgs e)
{
var todoItem = (TodoItem)BindingContext;
if (isNewItem)
{
App.Database.Insert(todoItem);
}
else
{
App.Database.Update(todoItem);
}
appLink = GetAppLink(BindingContext as TodoItem);
Application.Current.AppLinks.RegisterLink(appLink);
await Navigation.PopAsync();
}
async void OnDeleteActivated(object sender, EventArgs e)
{
var todoItem = (TodoItem)BindingContext;
App.Database.Delete(todoItem.ID);
Application.Current.AppLinks.DeregisterLink(appLink);
await Navigation.PopAsync();
}
async void OnCancelActivated(object sender, EventArgs e)
{
await Navigation.PopAsync();
}
AppLinkEntry GetAppLink(TodoItem item)
{
var pageType = GetType().ToString();
var pageLink = new AppLinkEntry
{
Title = item.Name,
Description = item.Notes,
AppLinkUri = new Uri(string.Format("http://{0}/{1}?id={2}", App.AppName, pageType, WebUtility.UrlEncode(item.ID)), UriKind.RelativeOrAbsolute),
IsLinkActive = true,
Thumbnail = ImageSource.FromFile("monkey.png")
};
pageLink.KeyValues.Add("contentType", "TodoItemPage");
pageLink.KeyValues.Add("appName", App.AppName);
pageLink.KeyValues.Add("companyName", "Xamarin");
return pageLink;
}
}
}
TodoIteamPageCS.cs code
This code is used to the switch by the ItemPage.
using System;
using System.Net;
using Xamarin.Forms;
namespace DeepLinking
{
public class TodoItemPageCS : ContentPage
{
IAppLinkEntry appLink;
bool isNewItem;
public TodoItemPageCS() : this(false)
{
}
public TodoItemPageCS(bool isNew = false)
{
isNewItem = isNew;
var nameEntry = new Entry { Placeholder = "task name" };
nameEntry.SetBinding(Entry.TextProperty, "Name");
var notesEntry = new Entry();
notesEntry.SetBinding(Entry.TextProperty, "Notes");
var doneSwitch = new Switch();
doneSwitch.SetBinding(Switch.IsToggledProperty, "Done");
var saveButton = new Button { Text = "Save" };
saveButton.Clicked += OnSaveActivated;
var deleteButton = new Button { Text = "Delete" };
deleteButton.Clicked += OnDeleteActivated;
var cancelButton = new Button { Text = "Cancel" };
cancelButton.Clicked += OnCancelActivated;
Title = "Todo Item";
Content = new StackLayout
{
VerticalOptions = LayoutOptions.StartAndExpand,
Children = {
new Label { Text = "Name" },
nameEntry,
new Label { Text = "Notes" },
notesEntry,
new Label { Text = "Done" },
doneSwitch,
saveButton,
deleteButton,
cancelButton
}
};
}
protected override void OnAppearing()
{
appLink = GetAppLink(BindingContext as TodoItem);
if (appLink != null)
{
appLink.IsLinkActive = true;
}
}
protected override void OnDisappearing()
{
if (appLink != null)
{
appLink.IsLinkActive = false;
}
}
async void OnSaveActivated(object sender, EventArgs e)
{
var todoItem = (TodoItem)BindingContext;
if (isNewItem)
{
App.Database.Insert(todoItem);
}
else
{
App.Database.Update(todoItem);
}
appLink = GetAppLink(BindingContext as TodoItem);
Application.Current.AppLinks.RegisterLink(appLink);
await Navigation.PopAsync();
}
async void OnDeleteActivated(object sender, EventArgs e)
{
var todoItem = (TodoItem)BindingContext;
App.Database.Delete(todoItem.ID);
Application.Current.AppLinks.DeregisterLink(appLink);
await Navigation.PopAsync();
}
async void OnCancelActivated(object sender, EventArgs e)
{
await Navigation.PopAsync();
}
AppLinkEntry GetAppLink(TodoItem item)
{
var pageType = GetType().ToString();
var pageLink = new AppLinkEntry
{
Title = item.Name,
Description = item.Notes,
AppLinkUri = new Uri(string.Format("http://{0}/{1}?id={2}", App.AppName, pageType, WebUtility.UrlEncode(item.ID)), UriKind.RelativeOrAbsolute),
IsLinkActive = true,
Thumbnail = ImageSource.FromFile("monkey.png")
};
pageLink.KeyValues.Add("contentType", "TodoItemPage");
pageLink.KeyValues.Add("appName", App.AppName);
pageLink.KeyValues.Add("companyName", "Xamarin");
return pageLink;
}
}
}
TodoListPage.xaml Code
Design for TodoListPage.
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="DeepLinking.TodoListPage" Title="Todo">
<ContentPage.ToolbarItems>
<ToolbarItem Text="+" Clicked="OnAddItemClicked">
<ToolbarItem.Icon>
<OnPlatform x:TypeArguments="FileImageSource">
<On Platform="Android" Value="plus.png" />
</OnPlatform>
</ToolbarItem.Icon>
</ToolbarItem>
</ContentPage.ToolbarItems>
<ListView x:Name="listView" ItemSelected="OnItemSelected">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout Padding="20,0,0,0" HorizontalOptions="StartAndExpand" Orientation="Horizontal">
<Label Text="{Binding Name}" VerticalTextAlignment="Center" />
<Image Source="check.png" IsVisible="{Binding Done}" />
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</ContentPage>
TodoListPage.xaml.cs Code
This code is used to the backend of the ListPage.
using System;
using Xamarin.Forms;
namespace DeepLinking
{
public partial class TodoListPage : ContentPage
{
public TodoListPage()
{
InitializeComponent();
}
protected override void OnAppearing()
{
base.OnAppearing();
listView.ItemsSource = App.Database.GetItems();
}
protected override void OnDisappearing()
{
base.OnDisappearing();
listView.ItemsSource = null;
}
async void OnAddItemClicked(object sender, EventArgs e)
{
var todoItem = new TodoItem()
{
ID = Guid.NewGuid().ToString()
};
var todoPage = new TodoItemPage(true);
todoPage.BindingContext = todoItem;
await Navigation.PushAsync(todoPage);
}
async void OnItemSelected(object sender, SelectedItemChangedEventArgs e)
{
var todoItem = e.SelectedItem as TodoItem;
var todoPage = new TodoItemPage
{
BindingContext = todoItem
};
await Navigation.PushAsync(todoPage);
}
}
}
TodoListPageCS.cs code
This code is used to switch by the list page.
using System;
using Xamarin.Forms;
namespace DeepLinking
{
public partial class TodoListPageCS : ContentPage
{
ListView listView;
public TodoListPageCS()
{
Title = "Todo";
var toolbarItem = new ToolbarItem { Text = "+" };
toolbarItem.Clicked += OnAddItemClicked;
toolbarItem.Icon = Device.RuntimePlatform == Device.Android ? "plus.png" : null;
ToolbarItems.Add(toolbarItem);
var dataTemplate = new DataTemplate(() =>
{
var label = new Label { VerticalTextAlignment = TextAlignment.Center };
label.SetBinding(Label.TextProperty, "Name");
var image = new Image { Source = ImageSource.FromFile("check.png") };
image.SetBinding(VisualElement.IsVisibleProperty, "Done");
var stackLayout = new StackLayout
{
Padding = new Thickness(20, 0, 0, 0),
HorizontalOptions = LayoutOptions.StartAndExpand,
Orientation = StackOrientation.Horizontal,
Children = {
label,
image
}
};
return new ViewCell { View = stackLayout };
});
listView = new ListView { ItemTemplate = dataTemplate };
listView.ItemSelected += OnItemSelected;
Content = listView;
}
protected override void OnAppearing()
{
base.OnAppearing();
listView.ItemsSource = App.Database.GetItems();
}
protected override void OnDisappearing()
{
base.OnDisappearing();
listView.ItemsSource = null;
}
async void OnAddItemClicked(object sender, EventArgs e)
{
var todoItem = new TodoItem()
{
ID = Guid.NewGuid().ToString()
};
var todoPage = new TodoItemPageCS(true);
todoPage.BindingContext = todoItem;
await Navigation.PushAsync(todoPage);
}
async void OnItemSelected(object sender, SelectedItemChangedEventArgs e)
{
var todoItem = e.SelectedItem as TodoItem;
var todoPage = new TodoItemPageCS
{
BindingContext = todoItem
};
await Navigation.PushAsync(todoPage);
}
}
}
Finally, we will see the given classes.
Step 6. Open Solution Explorer >> right click on Solution Explorer and select Add >> Class.
After that, open the Dialog Box Select Visual C# >> Class, and click ok (Class Name: ISQLite).
Select ISQLite.cs on this page. Just copy the following code.
ISQLite Code
Connecting to the SQLite DB.
SQLiteConnection GetConnection();
Step 7. Next, go to Solution Explorer >> Project Name(Portable) >> App. cs, and select App. cs of this page. Just copy the following code.
App. cs Code
public App()
{
Database = new TodoItemDatabase();
MainPage = new NavigationPage(new TodoListPage());
}
Step 8. After completing your work with the design view, go to the " Build " menu and click open "Configure Manager ". In the popup window, configure your startup projects. Click F5 or Run your project. Given below is the result.
Finally, we have successfully created a DeepLinking application. Later we will discuss more Xamarin.Forms applications.