Create An Alert Window In Xamarin Android App Using Visual Studio 2015

Introduction

Xamarin is a platform to develop cross-platform and multi-platform apps (for example, Windows phone, Android, iOS). In Xamarin platform, the code sharing concept is used. In Xamarin Studio, Visual Studio is also available.

Prerequisites 
  • Visual Studio 2015 Update 3 
The steps given below are required to be followed in order to create an Alert Window in Xamarin Android app, using Visual Studio 2015.
 
Step 1
 
Click File--> select New--> select Project. The project needs to be clicked after opening all the types of projects in Visual Studio or click (Ctrl+Shift+N).
 
 
 
Step 2
 
After opening the New Project, select Installed-->Templates-->Visual C#-->Android-->choose the Blank app (Android). Now, give your Android app; a name (Ex:sample) and give the path of your project. Afterwards, click OK.
 
 
 
Step 3
 
Subsequently, go to Solution Explorer. In Solution Explorer, get all the files and source in your project. Now, select Resource-->Layout-->double click to open main.axml page. To write XAML code, you need to select the source. Choose the Designer Window, if you want to design your app.
 
 
 
Step 4
 
After opening main.axml, file will open the main page designer. You can design this page, as per your desire.
 
 
 
Step 5
 
Now, go to the toolbox Window. In the toolbox Window, get all the types of the tools and controls. You need to go to the toolbox Window. Now, scroll down and you will see all the tools and controls. You need to drag and drop the button.
 
 
 
Step 6
 
Now, go to the properties Window. You need to edit the Button's text value and Id value.(Ex:android:text="Alert" android:id="@+id/btnalert").
 
 

Step 7
 
In this step, go to Main.axml page Source Panel. Note the Button's Id value and check XML code.
 
Main.xaml 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:minWidth="25px" android:minHeight="25px">  
  3.     <Button android:text="Alert" android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/btnalert" />   
  4.  </LinearLayout>   
 
 
Step 8
 
In this step, go to MainActivity.cs page in Solution Explorer. Add the namespace, mentioned below.
 
MainActivity.cs 
  1. using System;   
 
 
Step 9
 
In this step create Button_Click method and write the code given below.
 
MainActivity.cs 
  1. private void Button_Click(object sender, System.EventArgs e)  
  2. {  
  3.     Android.App.AlertDialog.Builder dialog = new AlertDialog.Builder(this);  
  4.     AlertDialog alert = dialog.Create();  
  5.     alert.SetTitle("My Alert");  
  6.     alert.SetMessage("Click Me");  
  7.     alert.SetButton("OK", (c, ev) => {});  
  8.     alert.Show();  
  9. }   
 
 
Step 10
 
In this step, go to MainActivity.cs page. Write the code, mentioned below between OnCreate() Method.
 
MainActivity.cs 
  1. protected override void OnCreate(Bundle bundle)  
  2. {  
  3.     base.OnCreate(bundle);  
  4.     SetContentView(Resource.Layout.Main);  
  5.     Button mbutton = FindViewById < Button > (Resource.Id.btnalert);  
  6.     mbutton.Click += Button_Click;  
  7. }   
 
 
Step 11
 
If you have an Android virtual device, run the app on it, else connect your Android phone and run the app on it. Simply, connect your phone and go to Visual Studio. The connected phone will show up in the Run menu (Ex:LENOVO A6020a40(Android 5.1-API 22)). Click the Run option.
 
 

Output
 
After a few seconds, the app will start running on your phone. You will see the Alert app works successfully. Now, you will click the Alert Button.
 
 
 
You will see the Alert is working successfully.
 
 
 
Summary

This was the process of how to create an Alert Window in Xamarin Android app, using Visual Studio 2015.


Similar Articles