MY mENU


Sunday 9 September 2012

Options Menu in Android Development


The project describes How to implement option menu into your application. Option menu is the primary collection of menu items for an activity, which appears when the user touches the MENU button.
Underlying Algorithm:
Basic description of algorithm in step by step form:
  1. Create a Project MyCheckBoxMenu
  2. Create and Open the res/menu/menu.xml file and insert the following:
  3.  xmlns:android="http://schemas.android.com/apk/res/android">
       android:id="@+id/settings_title"
             android:title="@string/settings_title" />
       android:id="@+id/back_title"
             android:title="@string/back_title" />
       android:id="@+id/exit_title"
             android:title="@string/exit_title" />
>
  • Define the required strings in strings.xml.
  • Make sure you write following method in MyCheckBoxMenu class:
  • public boolean onCreateOptionsMenu(Menu menu)
    {
    super.onCreateOptionsMenu(menu);
    MenuInflater inflater = getMenuInflater();
    inflater.inflate(R.menu.menu, menu);
    return true;
    }
    The inflater.inflate() method loads the menu file for the Activity, specified by the resource ID — R.menu.menu refers to the res/menu/menu.xml menu file.
  • Create and Open res/xml/settings.xml file and insert following code:
  •  xmlns:android="http://schemas.android.com/apk/res/android">
     android:key="music"
    android:title="@string/music_title" android:summary="@string/music_summary"
                    android:defaultValue="true" />
             android:key="hints"
    android:title="@string/hints_title" android:summary="@string/hints_summary"
                    android:defaultValue="true" />
    >
    This will create a menu which will have checkbox to select and deselect settings for application and will be saved accordingly in prefs.
  • Next add a new activity in manifest.xml for prefs class.
  •  android:name="org.example.MyCheckBoxMenu.Prefs" 
                    android:label="@string/settings_title">
            
    >
  • Run the application.
  • Steps to Create New Project:
    1. Open Eclipse. Use the New Project Wizard and select Android Project Give the respective project name i.e. MyCheckBoxMenu
    2. Then enter the following information:
    • Project name: MyCheckBoxMenu
    • Build Target: Android 1.6
    • Application name: MyCheckBoxMenu
    • Package name: org.example.MyCheckBoxMenu
    • Create Activity: MyCheckBoxMenu
    On Clicking Finish MyCheckBoxMenu code structure is generated with the necessary Android Packages being imported along with MyCheckBoxMenu.java. Following code must be added in MyCheckBoxMenu class to get the menu work.
    public booleanonOptionsItemSelected(MenuItem item)
    {
        switch (item.getItemId())
        {
            case R.id.settings_title:
                    startActivity(new Intent(this, Prefs.class));
            return true;
    case R.id.exit_title:
                    finish();
                    return true;
        }
      return false;
    }
    Prefs.java
    package org.example.MyCheckBoxMenu;
    import org.example.MyCheckBoxMenu.R;
    import android.os.Bundle;
    import android.preference.PreferenceActivity;
    public class Prefs extends PreferenceActivity {
            @Override
            protected void onCreate(Bundle savedInstanceState) {
                    super.onCreate(savedInstanceState);
                    addPreferencesFromResource(R.xml.settings);
            }
    }
    Output –The final output:
    Click on “MENU”
    Click on “Options”
    Be Sociable, Share!

    No comments:

    Post a Comment