Understanding User Interface in Android – Part 4: Even More Views

In this final installation of the Android Views series of articles, we shall continue our exploration of another category of views – Menu views, and some additional cool views. The views discussed include:

  • Context Menu
  • Options Menu
  • AnalogClock
  • DigitalClock
  • WebView

Note: for all the examples in this article, you shall use the project created in the previous article.

Menus

Menus are useful for displaying additional options that are not directly visible on the main UI of an application. There are two main types of menus in Android:

  • Context Menu – displays information related to a particular view on an activity. In Android, to activate a context menu you press and hold on to it.
  • Options Menu – displays information related to the current activity. In Android, you activate the options menu by pressing the MENU key.

Figure 1 shows an example of an options menu in the Browser application. The option menu is displayed whenever the user presses the MENU button. The menu items displayed is dependent on the current activity that is running.


Figure 1 – The options menu in the Browser application

Figure 2 shows a context menu that is displayed when the user presses and holds on a hyperlink displayed on the page. The menu items displayed are dependent on the component or view currently selected. To activate the context menu, the user selects an item on the screen and either presses and holds it or simply presses the center button on the directional keypad.


Figure 2 – The context menu in the Browser application

To see how to implement menus in Android, add a new file to the res/layout folder and name it as menu.xml. Populate it with the following element:

Then, add a new class to the src/net.learn2develop.AndroidViews folder and name it as MenuExample.java. You will leave this file alone for now. Modify the AndroidManifest.xml file to register the new activity:

Creating the Helper Methods

For the examples in this section, you will create two helper methods in the MenuExample.java file. They are CreateMenu() and MenuChoice(). Define the two helper methods and the onCreate() method as shown below:

The CreateMenu() method creates a list of menu items and modifies the behavior of each menu item. The parameters for the add() method are: groupid, itemid, order, and title. The setAlphabeticShortcut() method assigns a keyboard shortcut to the menu item so that when the user presses a specific key, the menu item would be selected. The setIcon() method assigns an icon to the menu item.

The MenuChoice() method displays the selected menu item using the Toast class. Next, copy two images (as shown in Figure 3) into the res/drawable folder.


Figure 3 – Adding images to the res/drawable folder

Options Menu

To display the options menu for your activity, you need to override two methods – onCreateOptionsMenu() and onOptionsItemSelected(). The onCreateOptionsMenu() method is called when the MENU button is pressed. In this event, you would call the CreateMenu() helper method to display the options menu. When a menu item is selected, the onOptionsItemSelected() method will be called. In this case, you call the MenuChoice() method to display the menu item selected (and do whatever you need to do):

Modify the ViewsActivity.java file as follows to start the MenuExample activity:

Press F11 to debug the application. When you press the MENU key, you will see the options menu as shown in Figure 4.


Figure 4 – Displaying a options menu in your application

Observe the icons displayed for menu item 1, 2 and 3. Also, if the options menu has more than six items, there will be a More menu item to represent the additional menu items. The right of Figure 3-24 shows pressing the More item displays the additional menu items as a list.

Context Menu

If you want to associate a context menu to a view on an activity, you need to call the setOnCreateContextMenuListener() method of that particular view. For example, the following code shows how you can associate a context menu with the Button view:

Like the Options menu, you need to override the onCreateContextMenu() and onContextItemSelected() methods. Press F11 in Eclipse to debug the application. Press the Button view and hold for a few seconds. You will now see the context menu (see Figure 5). Observe the keyboard shortcuts for menu items 1 to 4 shown below the menu names.


Figure 5 – Displaying context menu in your application

Some Additional Views

Besides the standard views that you have seen up to this point, the Android SDK also provides some interesting views that make your applications much more interesting. In the following sections, you will learn more about the following views:

  • AnalogClock
  • DigitalClock
  • WebView

AnalogClock and DigitalClock Views

The AnalogClock view displays an analog clock. Populate the main.xml file with the following element:

In the ViewsActivity.java file, ensure that the main.xml file is loaded as the UI for the activity:

When you press F11 now, you will see the analog clock as shown in Figure 6.


Figure 6 – The AnalogClock in action

Instead of an analog clock, you can display a digital clock instead using the DigitalClock view.

Add the DigitalClock element to main.xml as shown below:

Press F11 in Eclipse. Figure 7 shows the analog clock and the digital clock.


Figure 7 – The DigitalClock in action

WebView

The WebView view allows you to embed a web browser in your Android applications. Add a new file to the res/layout folder and name it as webview.xml and populate it with the following element:

Add a new class to the src/net.learn2develop.AndroidViews folder and name it as WebViewExample.java. Populate it as follows:

The loadUrl() method of the WebView class loads the page of a given URL. Modify the AndroidManifest.xml file to register the new activity as well as to request for the INTERNET permission:

For the WebView view to work, you need to add the INTERNET permission to the AndroidManifest.xml file. Modify the ViewsActivity.java file as follows to start the WebViewExample activity:

Press F11 to debug the application on the Android emulator. Figure 8 shows the WebView view in action.


Figure 8 – The WebView displaying a web page

You can also dynamically formulate a HTML string and load it into the WebView view, using the loadDataWithBaseURL() method:

Figure 9 shows the WebView with the HTML string loaded.


Figure 9 – Displaying the content of a HTML string

If you have static pages that you want to load directly from your project, you can save the HTML pages under the assets folder of your package. Figure 10 shows that I have added a page named Index.html under the assets folder.


Figure 10 – Adding a HTML page in the assets folder

The content of the Index.html is as follows:

To load the WebView using the content stored in the Index.html file, use the loadUrl() method as follows:

Figure 11 shows the content loaded in the WebView view.


Figure 11 – Loading the HTML page using WebView

Summary

In this article, you have seen how to implement context and option menus in your Android applications. In addition, you have also seen how to use some of the other cool views, such as the AnalogClock and DigitalClock. And this concludes the series of Android views. I hope you now have a great grasp of how views work in Android. Have a great Android application experience!

Exclusive tips, how-tos, news and comment

Receive monthly updates on the world of mobile dev.

Other Products

Market leading device intelligence for the web, app and MNO ecosystems
DeviceAtlas - Device Intelligence

Real-time identification of fraudulent and misrepresented traffic
DeviceAssure - Device Verification

A free tool for developers, designers and marketers to test website performance
mobiReady - Evaluate your websites’ mobile readiness

© 2024 DeviceAtlas Limited. All rights reserved.

This is a website of DeviceAtlas Limited, a private company limited by shares, incorporated and registered in the Republic of Ireland with registered number 398040 and registered office at 6th Floor, 2 Grand Canal Square, Dublin 2, Ireland