Saturday, September 8, 2012

Options Menu Development in Android

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. <menu xmlns:android="http://schemas.android.com/apk/res/android">
      <item android:id="@+id/settings_title"

             android:title="@string/settings_title" />
      <item android:id="@+id/back_title"
             android:title="@string/back_title" />
      <item android:id="@+id/exit_title"
             android:title="@string/exit_title" />
    </menu>
  4. Define the required strings in strings.xml.
  5. Make sure you write following method in MyCheckBoxMenu class:
  6. 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.
  7. Create and Open res/xml/settings.xml file and insert following code:
  8. <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <CheckBoxPreference android:key="music"
    android:title="@string/music_title" android:summary="@string/music_summary"
                    android:defaultValue="true" />
            <CheckBoxPreference android:key="hints"
    android:title="@string/hints_title" android:summary="@string/hints_summary"
                    android:defaultValue="true" />
    </PreferenceScreen>
    This will create a menu which will have checkbox to select and deselect settings for application and will be saved accordingly in prefs.
  9. Next add a new activity in manifest.xml for prefs class.
  10. <activity android:name="org.example.MyCheckBoxMenu.Prefs" 
                    android:label="@string/settings_title">
            </activity>
  11. 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”

No comments:

Post a Comment