Introduction
Xamarin is a platform to develop cross-platform and multi-platform apps (for example, Windows phone, Android, iOS). In the 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 pass the data between two activities in Xamarin Android app, using Visual Studio 2015.
Step 1
Click File--> select New--> select Project, or click (Ctrl+Shift+N). The project needs to be clicked after opening all the types of projects in Visual Studio.

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
Next, go to the Solution Explorer and select Resource--> Layout--> double click to open Main.axml page. 
Step 4
After opening the main.axml file, you can either select Designer mode or Source mode, depending on your expertise. We will select the Designer mode here for ease of designing the application.

First, we have to delete the default "Hello World" button and C# button action code for this. So, go to the source panel and delete the coding of the button. Now, go to the MainActivity.cs page and delete the C# code for the button action.
Step 5
Now, go to the Toolbox window where we get all the types of the tools and controls.
Now, scroll down and drag and drop the Button to your application page.

Step 6
Now, go to the Properties window. You need to edit the Button Id Value and Text Value (EX: android:id="@+id/myButton" android:text="@string/hello" ).

Step 7
In this step, go to the Main.axml page Source Panel. Note the Button Id value and Text value.

Main.axml
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
- <Button android:id="@+id/myButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" />
- </LinearLayout>










Kumar SPosted Oct 31, 2016, 2:52 AM
Good
Prasanna MuraliPosted Oct 30, 2016, 7:00 AM
Nice post...
Thiruppathi RPosted Oct 29, 2016, 4:58 AM
good job..