Create an Image GridView Control In Xamarin Android App Using Visual Studio 2015 Update 3

Introduction

Xamarin is a platform to develop cross-platform and multi-platform apps. (Ex. Windows phone,android,ios) A code sharing concept is used. Xamarin studio is avalable in visual studio also.

Image GridView control is called if you want to view images which are grid type.

Prerequisites

  • Visual Studio 2015 update 3 
The following steps need to be followed in order to create an Image GridView Control in xamarin android app using visual studio 2015 update 3.

Step 1 -
Click file--> Select New--> Next select Project. Click the project after opening all 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).

Next give your android app a name(Ex:sample) and give path of your project. After giving all click ok.



Step 3 -
Next go to the solution explorer. Solution explorer has the all files and sources in your project.

Next Select Resource-->Layout-->double click to open main.axml page. You want to select source to write the xaml code. If you want design choose the designer window where you can design your app.



Step 4 - After opening, the main.axml file will open the main page designer. In this page choose which type you want. Next you will Delete the Default hello world button -- go to the source panel you can see the button coding and you will delete it. After deleting the xaml code next delete the c# button action code. Go to the MainActivity.cs page. You will delete the button code.

Step 5 - Next go to the toolbox window which has all types of the tools and control.You will go to the toolbox window. Next scroll down  and you will see the all tools and controls.

You will drag and drop the GridView control in your main.axml page.



Step 6 - After dragging and dropping the GridView control  you can go to the Main.axml page source and you will give the gridview id(Ex: android:id="@+id/gridView1"). and check the following tags.

Main.xaml
  1. <GridView  
  2.   
  3. android:minWidth="25px"  
  4.   
  5. android:minHeight="25px"  
  6.   
  7. android:layout_width="match_parent"  
  8.   
  9. android:layout_height="wrap_content"  
  10.   
  11. android:id="@+id/gridView1"  
  12.   
  13. android:columnWidth="90dp"  
  14.   
  15. android:numColumns="auto_fit"  
  16.   
  17. android:verticalSpacing="10dp"  
  18.   
  19. android:horizontalSpacing="10dp"   
  20.   
  21. android:stretchMode="columnWidth"  
  22.   
  23. android:gravity="center"/>  


Step 7 - Next add images in your local system.

Go to the solution explorer-->Resource--> select Drawable and right click the folder--> add--> Existing item. or (Shift+Alt+A).



Step 8 - Next go to your images location(path) and choose which images you want select and click the add button.



Step 9 - Next go to rename your images, Right click the image select rename and  you will renam it(Ex: sample_1).



Step 10 - After renaming your images go to the MainActivity.cs page you will write the following code, or copy paste between OnCreate(Bundle bundle)method .

MainActivity.cs
  1. public class MainActivity: Activity {  
  2.         protected override void OnCreate(Bundle bundle) {  
  3.             base.OnCreate(bundle);  
  4.             SetContentView(Resource.Layout.Main);  
  5.             var gridview1 = FindViewById < GridView > (Resource.Id.gridview1);  
  6.             gridview1.Adapter = new ImageAdapter(this);  
  7.             gridview1.ItemClick += delegate(object sender, AdapterView.ItemClickEventArgs args) {  
  8.                 Toast.MakeText(this, args.Position.ToString(), ToastLength.Short).Show();  
  9.             };  
  10.         }  
  11.     }  
  12.     // write public class for Image Adapter   
  13. public class ImageAdapter: BaseAdapter {  
  14.     Context context;  
  15.     public ImageAdapter(Context c) {  
  16.         context = c;  
  17.     }  
  18.     public override int Count {  
  19.         get {  
  20.             return thumbIds.Length;  
  21.         }  
  22.     }  
  23.     public override Java.Lang.Object GetItem(int position) {  
  24.         return null;  
  25.     }  
  26.     public override long GetItemId(int position) {  
  27.             return 0;  
  28.         }  
  29.         // create a new ImageView for each item referenced by the Adapter   
  30.     public override View GetView(int position, View convertView, ViewGroup parent) {  
  31.             ImageView imageView;  
  32.             if (convertView == null) { // if it's not recycled, initialize some attributes   
  33.                 imageView = new ImageView(context);  
  34.                 imageView.LayoutParameters = new GridView.LayoutParams(85, 85);  
  35.                 imageView.SetScaleType(ImageView.ScaleType.CenterCrop);  
  36.                 imageView.SetPadding(8, 8, 8, 8);  
  37.             } else {  
  38.                 imageView = (ImageView) convertView;  
  39.             }  
  40.             imageView.SetImageResource(thumbIds[position]);  
  41.             return imageView;  
  42.         }  
  43.         // references to our images   
  44.     int[] thumbIds = {  
  45.         Resource.Drawable.sample_1,  
  46.         Resource.Drawable.sample_2,  
  47.         Resource.Drawable.sample_3,  
  48.         Resource.Drawable.sample_4,  
  49.         Resource.Drawable.sample_1,  
  50.         Resource.Drawable.sample_2,  
  51.     };  
  52. }  
Step 11 - Next go to the MainActivity.cs page. You will see the images and image code without error.



Step 12 - If you have android virtual device you can run the virtual device. If you don't have it, run your Android phone.

Connect android phone the via USB cable in your system or laptop. The andriod mobile phone will show the message Allow USB debugging?.

If you always run the app in this mobile check the always allow option from this computer and next click the ok button.

Next go to visual studio.

If connecing your Andriod phone show the run menu (Ex:LENOVO A6020a40(Android 5.1-API 22)). if showing the phone in run option.

Next go to click the connected android phone it will run in your android phone.



Output

This will take some time  because the app will be built in your phone.

After running your app in your phone show the app with Gridview Images

(portrait)



(landscape)



Summery - So this was the process of creating an Image GridView Control in xamarin android app using visual studio 2015 update 3.


Similar Articles