Xamarin – Android Activity Lifecycle

Xamarin – Android Activity Lifecycle ”; Previous Next When a user navigates through an Android App, a series of events occurs. For example, when a user launches an app, e.g., the Facebook App, it starts and becomes visible on the foreground to the user, onCreate() → onStart() → onResume(). If another activity starts, e.g., a phone call comes in, then the Facebook app will go to the background and the call comes to the foreground. We now have two processes running. onPause() — > onStop() When the phone call ends, the Facebook app returns to the foreground. Three methods are called. onRestart() — > onStart() — > onResume() There are 7 lifecycle processes in an Android activity. They include − onCreate − It is called when the activity is first created. onStart − It is called when the activity starts and becomes visible to the user. onResume − It is called when the activity starts interacting with the user. User input takes place at this stage. onPause − It is called when the activity runs in the background but has not yet been killed. onStop − It is called when the activity is no longer visible to the user. onRestart − It is called after the activity has stopped, before starting again. It is normally called when a user goes back to a previous activity that had been stopped. onDestroy − This is the final call before the activity is removed from the memory. The following illustration shows the Android Activity Lifecycle − Print Page Previous Next Advertisements ”;

Xamarin – Useful Resources

Xamarin – Useful Resources ”; Previous Next The following resources contain additional information on Xamarin. Please use them to get more in-depth knowledge on this. Useful Links on Xamarin Xamarin Wiki − Wikipedia Reference for Xamarin. Useful Books on Xamarin To enlist your site on this page, please drop an email to [email protected] Print Page Previous Next Advertisements ”;

Xamarin – Gallery

Xamarin – Gallery ”; Previous Next A Gallery is a type of view that is used to show items in a horizontal scrollable list. The selected item is then shown at the center. In this example, you are going to create a gallery containing images which are scrollable horizontally. An image when clicked will display a number for the selected image. First of all, create a new project and give it a name, e.g., Gallery App Tutorial. Before you start to code, paste 7 images into the resource /drawable folder. Navigate to main.axml under resources folder and a gallery in between the linear layout tags. <?xml version=”1.0″ encoding=”utf-8″?> <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android” android:orientation=”vertical” android:layout_width=”fill_parent” android:layout_height=”fill_parent” android:background=”#d3d3d3″> <Gallery android:id=”@+id/gallery” android:layout_width=”fill_parent” android:layout_height=”wrap_content” android:padding=”10dp” /> </LinearLayout> Create a new class called ImageAdapter. This class is going to be used to bind the images to the gallery we created above. The first step is to add a class that contains a context cont which we use to store fields. public class ImageAdapter : BaseAdapter { Context cont; public ImageAdapter(Context ct) { cont = ct; } } Next, we count the array list which contains our image and returns its size. public override int Count { get { return imageArraylist.Length; } } In the next step, we get the position of the item. The following code shows how to do it. public override Java.Lang.Object GetItem(int position) { return null; } public override long GetItemId(int position) { return 0; } In the next step, we create an imageview for the items referenced by the adapter. public override View GetView(int position,View convertView, ViewGroup parent) { ImageView img = new ImageView(cont); img.SetImageResource(imageArraylist[position]); img.SetScaleType(ImageView.ScaleType.FitXy); img.LayoutParameters = new Gallery.LayoutParams(200, 100); return img; } In the final step, we create a reference to the images we added in the resources.drawable folder. To do this, we create an array to hold the collection of images. The following code explains how to do it. int[] imageArraylist = { Resource.Drawable.img1, Resource.Drawable.img2, Resource.Drawable.img3, Resource.Drawable.img4, Resource.Drawable.img5, Resource.Drawable.img6, }; } Next, we go to mainActivity.cs and insert the following code under the OnCreate() method. Gallery myGallery = (Gallery)FindViewById<Gallery>(Resource.Id.gallery); myGallery.Adapter = new ImageAdapter(this); myGallery.ItemClick += delegate(object sender, AdapterView.ItemClickEventArgs args) { Toast.MakeText(this, args.Position.ToString(), ToastLength.Short).Show(); } Finally, build and run your application to view the output. Print Page Previous Next Advertisements ”;

Xamarin – Android Resources

Xamarin – Android Resources ”; Previous Next When a new Android project is created, there are some files that are added to the project, by default. We call these default project files and folders as Android Resources. Take a look at the following screenshot. The default Android resources include the following − AndroidManifest.xml file − It contains information about your Android applications, e.g., the application name, permissions, etc. Resources folder − Resources can be images, layouts, strings, etc. that can be loaded via Android’s resource system. Resources/drawable folder − It stores all the images that you are going to use in your application. Resources/layout folder − It contains all the Android XML files (.axml) that Android uses to build user interfaces. The Resources/values folder − It contains XML files to declare key-value pairs for strings (and other types) throughout an application. This is how localization for multiple languages is normally set up on Android. Resources.designer.cs − This file is created automatically when the Android projected is created and it contains unique identifiers that reference the Android resources. MainActivity.cs file − This is the first activity of your Android application and from where the main application actions are launched from. Resource files can be accessed programmatically through a unique ID which is stored in the resources.designer.cs file. The ID is contained under a class called Resource. Any resource added to the project is automatically generated inside the resource class. The following code shows how to create a gridview project containing seven images − namespace HelloGridView { [System.CodeDom.Compiler.GeneratedCodeAttribute (“Xamarin.Android.Build.Tas ks”, “1.0.0.0”)] public partial class Resource { static Resource() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } public static void UpdateIdValues() {} public partial class Attribute { static Attribute() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } private Attribute() {} } public partial class Drawable { // aapt resource value: 0x7f020000 public const int Icon = 2130837504; // aapt resource value: 0x7f020001 public const int img1 = 2130837505; // aapt resource value: 0x7f020002 public const int img2 = 2130837506; // aapt resource value: 0x7f020003 public const int img3 = 2130837507; // aapt resource value: 0x7f020004 public const int img4 = 2130837508; // aapt resource value: 0x7f020005 public const int img5 = 2130837509; // aapt resource value: 0x7f020006 public const int img6 = 2130837510; // aapt resource value: 0x7f020007 public const int img7 = 2130837511; static Drawable() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } private Drawable() {} } public partial class Id { // aapt resource value: 0x7f050000 public const int gridview = 2131034112; static Id() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } private Id() {} } public partial class Layout { // aapt resource value: 0x7f030000 public const int Main = 2130903040; static Layout() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } private Layout() {} } public partial class String { // aapt resource value: 0x7f040001 public const int ApplicationName = 2130968577; // aapt resource value: 0x7f040000 public const int Hello = 2130968576; static String() { global::Android.Runtime.ResourceIdManager.UpdateIdValues(); } private String() {} } } } From the above code, the seven images are referenced in a class called drawable. These images are added programmatically. If a user adds another image to the project, it will also be added to the drawable class. The gridview contained in the project is also added and stored in a class on its own. Each item contained in the resources folder is automatically generated and stored in a class. Print Page Previous Next Advertisements ”;

Xamarin – Application Manifest

Xamarin – Application Manifest ”; Previous Next All Android Apps have a manifest file commonly referred to as AndroidManifest.xml. The manifest file contains everything about the Android platform that an App needs in order to run successfully. Here, we have listed down some of the important functions of a manifest file − It declares the minimum API level required by the application. It declares the permissions required by the application, e.g., camera, location, etc. It gives permissions to hardware and software features used or required by the application. It lists the libraries that the application must be linked. The following screenshot shows a Manifest file. Application name − It refers to the title of your App Package name − It is an unique name used to identify your App. Application Icon − It is the icon displayed on the Android home screen for your App. Version Number − It is a single number that is used to show one version of your App is more recent than another. <manifest xmlns:android=”http://schemas.android.com/apk/res/android” android:versionCode=”1″ > Version Name − It is a user-friendly version string for your App that users will see on your App settings and on the Google PlayStore. The following code shows an example of a version name. <manifest xmlns:android=”http://schemas.android.com/apk/res/android” android:versionName=”1.0.0″> Minimum Android Version − It is the lowest Android version platform which your application supports. <uses-sdk android:minSdkVersion=”16″ /> In the above example, our minimum Android version is API Level 16, commonly referred to as JELLY BEAN. Target Android Version − It is the Android version on which your App is compiled against. Print Page Previous Next Advertisements ”;

Xamarin – First Application

Xamarin – First Application ”; Previous Next In this chapter, we will see how to create a small Android application using Xamarin. Hello Xamarin! Application First of all, start a new instance of Visual Studio and go to File → New → Project. On the Menu dialog box that appears, go to Templates → Visual C# → Android → Blank App (Android). Give an appropriate name for your application. In our case, we name it “helloWorld” and save it in the default location provided. Next, click the OK button for the new “helloXamarin” project to load. On the solution, open Resources → layout → Main.axml file. Switch from Design View and go to the Source file and type the following lines of code to build your app. <?xml version = “1.0” encoding = “utf-8”?> <LinearLayout xmlns:android = “http://schemas.android.com/apk/res/android” android:orientation = “vertical” android:background = “#d3d3d3” android:layout_width = “fill_parent” android:layout_height = “fill_parent”> <TextView android:text = “@string/HelloXamarin” android:textAppearance = “?android:attr/textAppearanceLarge” android:layout_width = “match_parent” android:layout_height = “wrap_content” android:id = “@+id/textView2” android:textColor = “@android:color/black” /> </LinearLayout> In the above code, we have created a new Android textview. Next, open the folder values and double-click Strings.xml to open it. Here, we are going to store information and values about the button created above. <?xml version = “1.0” encoding = “utf-8”?> <resources> <string name = “HelloXamarin”>Hello World, I am Xamarin!</string> <string name = “ApplicationName”>helloWorld</string> </resources> Open MainActivity.cs file and replace the existing code with the following lines of code. using System; using Android.App; using Android.Content; using Android.Runtime; using Android.Views; using Android.Widget; using Android.OS; namespace HelloXamarin { public class MainActivity : Activity { protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); SetContentView(Resource.Layout.Main); } } } Save the application. Build and then run it to display the created app in an Android Emulator. If you do not have an Android Emulator, then follow the steps given in the next section to create one. Setting Up an Android Emulator On your Visual Studio menu, go to Tools → Android → Android Emulator Manager. On the pop-up window that appears, click the Create button. It will display the following screen. On the above screen, supply the AVD name you want. Select a device that is appropriate for your display, e.g., Nexus 4” display. Select your target platform. It is always advisable to test on a minimum target platform, e.g., API 10 Android 2.3 (Gingerbread) so as to ensure your App works across all Android platforms. Fill in the rest of the fields and click the OK button. Your emulator is now ready. You can select it from the list of existing Android Virtual Devices and then click Start to launch it. Modifying HelloXamarin App In this section, we will modify our project and create a button which will display text upon click. Open main.axml and switch to source view. After our textview that we created, we will add a button as shown below. <Button android:id = “@+id/MyButton” android:layout_width = “fill_parent” android:layout_height = “wrap_content” android:text = “@string/ButtonClick” /> After adding a button, our full code will look like this − <?xml version = “1.0” encoding = “utf-8”?> <LinearLayout xmlns:android = “http://schemas.android.com/apk/res/android” android:orientation = “vertical” android:layout_width = “fill_parent” android:layout_height = “fill_parent”> <TextView android:text = “@string/HelloXamarin” android:textAppearance = “?android:attr/textAppearanceLarge” android:layout_width = “match_parent” android:layout_height = “wrap_content” android:id = “@+id/textView2” /> <Button android:id = “@+id/MyButton” android:layout_width = “fill_parent” android:layout_height = “wrap_content” android:text = “@string/ButtonClick” /> </LinearLayout> Next, we register our button values in the strings.xml file. <string name = “ButtonClick”>Click Me!</string> After adding our button in the strings.xml file, we will open MainActivity.cs file to add an action for our button when it is clicked, as shown in the following code. using System; using Android.App; using Android.Content; using Android.Runtime; using Android.Views; using Android.Widget; using Android.OS; namespace HelloXamarin { [Activity(Label = “HelloXamarin”, MainLauncher = true, Icon = “@drawable/icon”)] public class MainActivity : Activity { protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); SetContentView(Resource.Layout.Main); Button button = FindViewById<Button>(Resource.Id.MyButton); button.Click += delegate { button.Text = “Hello world I am your first App”; }; } } } Next, build and run your application. After clicking on the button, you will get the following output − Print Page Previous Next Advertisements ”;

Xamarin – Permissions

Xamarin – Permissions ”; Previous Next In Android, by default, no application has permissions to perform any operations that would have an effect on the user or the operating system. In order for an App to perform a task, it must declare the permissions. The App cannot perform the task until the permission are granted by the Android system. This mechanism of permissions stops applications from doing as they wish without the user’s consent. Permissions are to be recorded in AndroidManifest.xml file. To add permissions, we double-click on properties, then go to Android ManRequired permissions will appear. Check the appropriate permissions you wish to add. Camera − It provides permission to access the device’s camera. <uses-permission android:name=”android.permission.CAMERA” /> Internet − It provides access to network resources. <uses-permission android:name=”android.permission.INTERNET” /> ReadContacts − It provides access to read the contacts on your device. <uses-permission android:name=”android.permission.READ_CONTACTS” /> ReadExternalStorage − It provides access to read and store data on an external storage. <uses-permission android:name=”android.permission.READ_EXTERNAL_STORAGE” /> Calendars − It allows an app access to the calendar on the user device and events. This permission can be dangerous, as it grants an app the ability to send emails to guests without the owner’s awareness. The syntax for adding this permission is as shown below − <uses-permission android:name=”android.permission-group.CALENADAR” /> SMS − An app with this permission has the ability to use the devices messaging services. It includes reading, writing, and editing SMS and MMS messages. Its syntax is as shown below. <uses-permission android:name=”android.permission-group.SMS” /> Location − An app with this permission can access the device’s location using the GPS network. <uses-permission android:name=”android.permission-group.LOCATION” /> Bluetooth − An app with this permission can exchange data files with other Bluetooth enabled devices wirelessly. <uses-permission android:name=”android.permission.BLUETOOTH” /> Print Page Previous Next Advertisements ”;

Xamarin – Deploying Your App

Xamarin – Deploying Your App ”; Previous Next After completing the process of building your App, it’s important to use this App on a physical Android device or allow other people to download your App and install it on their devices. Releasing Your App Before releasing your App, it is important to convert it into a format that can be read by an Android system. This type of format is called an apk file. To create an apk file. Open your project. Go to Build Menu and select Configuration Manager On Configuration Manager, set Active Solution Configuration to release the App. Next, click the Build Menu again and select Export Android Package(.apk). Once finished, the apk file will be stored in your project folder /bin/Release. Publishing Your App There are 3 ways of publishing an App − Online Attachment It involves uploading your apk file online as an attachment. Then the users having Android devices can download and directly install your App on their devices. Google PlayStore PlayStore is the largest market for Android apps. To upload your App to the PlayStore, you need to have a developer account with Google. The developer account is created once and costs $25 to get a license. Manual Installation Manual installation involves installing the .apk file generated directly on a physical device. Copy the file to your Android device’s physical memory or an SD card and then run the file from your device. Android, by default, blocks installation of Apps that are not from PlayStore. To install your App, you must enable it to accept the App installation from the Settings. To do this, go to Settings on your device, look for Security menu, and then then check “Allow installation of apps from unknown sources.” Print Page Previous Next Advertisements ”;

Xamarin – Menus

Xamarin – Menus ”; Previous Next Popup Menus A popup menu refers to a menu that is attached to a view; it is also referred to as a shortcut menu. Let’s see how to add a popup menu to an Android App. Create a new project and call it popUpMenu App. Open Main.axml and create a button which will be used to display the popup menu. <?xml version = “1.0” encoding = “utf-8”?> <LinearLayout xmlns:android = “http://schemas.android.com/apk/res/android” android:orientation = “vertical” android:background = “#d3d3d3” android:layout_width = “fill_parent” android:layout_height = “fill_parent”> <Button android:id = “@+id/popupButton” android:layout_width = “fill_parent” android:layout_height = “wrap_content” android:text = “Show popup menu” android:background = “@android:color/holo_green_dark” android:textColor = “@android:color/black” /> </LinearLayout> Create a new folder under the Resources folder and call it Menu. Inside the Menu folder, add a new xml file called popMenu.xml. Under popMenu.xml, add the following menu items. <?xml version = “1.0” encoding=”utf-8″?> <menu xmlns:android = “http://schemas.android.com/apk/res/android”> <item android:id = “@+id/file_settings” android:icon = “@drawable/img_settings” android:title = “Settings” android:showAsAction = “ifRoom”> <item android:id = “@+id/new_game1” android:icon = “@drawable/imgNew” android:title = “New File Settings”/> <item android:id = “@+id/help” android:icon = “@drawable/img_help” android:title = “Help” /> <item android:id = “@+id/about_app” android:icon = “@drawable/img_help” android:title = “About app”/> </item> </menu> After adding the menu items, go to mainActivity.cs to display the popup menu on button click. protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); SetContentView(Resource.Layout.Main); Button showPopupMenu = FindViewById<Button>(Resource.Id.popupButton); showPopupMenu.Click += (s, arg) => { PopupMenu menu = new PopupMenu(this, showPopupMenu); menu.Inflate(Resource.Menu.popMenu); menu.Show(); }; } Now, build and run your application. It should produce the following output − Options Menu Options Menu is a collection of menus that are primary to an App and are mainly used to store settings, search, etc. Here, we are going to create a menu for settings with three items inside, i.e., New File Settings, Help, and About App. To create an options menu, we must create a new XML layout file in the resources folder. First of all, we will add a new XML file. Right-click on the Layout folder, then go to Add → New item → Visual C# → XML File. Choose an appropriate name for the layout file. In our example, we will call our file myMenu.xml. Inside myMenu.xml, we are going to create a new menu and add items inside. The following code shows how to do it. <?xml version = “1.0” encoding = “utf-8”?> <menu xmlns:android = “http://schemas.android.com/apk/res/android”> <item android:id = “@+id/file_settings” android:icon = “@drawable/img_settings” android:title = “Settings” android:showAsAction = “ifRoom”> <menu> <item android:id = “@+id/new_game1” android:icon = “@drawable/imgNew” android:title = “New File Settings” /> <item android:id = “@+id/help” android:icon = “@drawable/img_help” android:title = “Help” /> <item android:id = “@+id/about_app” android:icon = “@drawable/img_help” android:title = “About app”/> </menu> </item> </menu> Next, we navigate to MainActivity.cs and create an override class for onOptionsMenu(). public override bool OnCreateOptionsMenu(IMenu menu) { MenuInflater.Inflate(Resource.Menu.myMenu, menu); return base.OnPrepareOptionsMenu(menu); } Next, we create an action to respond to the settings menu when it is selected. To do this, we create another override class for the OnOptionsItemSelected() menu. public override bool OnOptionsItemSelected(IMenuItem item) { if (item.ItemId == Resource.Id.file_settings) { // do something here… return true; } return base.OnOptionsItemSelected(item); } Our final complete code will look as follows − namespace optionsMenuApp { [Activity(Label = “options Menu”, MainLauncher = true, Icon = “@drawable/icon”)] public class MainActivity : Activity { public override bool OnCreateOptionsMenu(IMenu menu) { MenuInflater.Inflate(Resource.Menu.myMenu, menu); return base.OnPrepareOptionsMenu(menu); } public override bool OnOptionsItemSelected(IMenuItem item) { if (item.ItemId == Resource.Id.file_settings) { // do something here… return true; } return base.OnOptionsItemSelected(item); } } } Now, build and run your application. It should produce the following output − Print Page Previous Next Advertisements ”;

Xamarin – Android Dialogs

Xamarin – Android Dialogs ”; Previous Next Alert Dialog In this section, we are going to create a button which on clicked displays an alert dialog box. The dialog box contains two buttons, i.e., Delete and Cancel buttons. First of all, go to main.axml and create a new button inside the linear layout as shown in the following code. <?xml version = “1.0” encoding = “utf-8”?> <LinearLayout xmlns:android = “http://schemas.android.com/apk/res/android” android:orientation = “vertical” android:layout_width = “fill_parent” android:background = “#d3d3d3” android:layout_height = “fill_parent”> <Button android:id=”@+id/MyButton” android:layout_width = “fill_parent” android:layout_height = “wrap_content” android:text = “Click to Delete” android:textColor = “@android:color/background_dark” android:background = “@android:color/holo_green_dark” /> </LinearLayout> Next, open MainActivity.cs to create the alert dialog and add its functionality. protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); SetContentView(Resource.Layout.Main); Button button = FindViewById<Button>(Resource.Id.MyButton); button.Click += delegate { AlertDialog.Builder alertDiag = new AlertDialog.Builder(this); alertDiag.SetTitle(“Confirm delete”); alertDiag.SetMessage(“Once deleted the move cannot be undone”); alertDiag.SetPositiveButton(“Delete”, (senderAlert, args) => { Toast.MakeText(this, “Deleted”, ToastLength.Short).Show(); }); alertDiag.SetNegativeButton(“Cancel”, (senderAlert, args) => { alertDiag.Dispose(); }); Dialog diag = alertDiag.Create(); diag.Show(); }; } Once done, build and run your Application to view the outcome. In the above code, we have created an alert dialog called alertDiag, with the following two buttons − setPositiveButton − It contains the Delete button action which on clicked displays a confirmation message Deleted. setNegativeButton − It contains a Cancel button which when clicked simply closes the alert dialog box. Print Page Previous Next Advertisements ”;