TUTORIAL

Context Menu in Android

Posted by Chintan Rathod Tutorials | Android Programming December 22, 2011
Context Menu helps views to have additional functionality.
Reader Level:
Download Files:
 

If you have been writing software applications for a while, I am sure you are familiar with context menus. A context menu is a list of action items popup when you right click on a screen in an application.

In an Android phone, if we long touch EditText, it will open a list of items and when you click on these items, there are some actions corresponding to them. This is known as a Context Menu in Android. Context Menu is generally helpful while you want to give some specific additional functionality to your Views. Views are nothing but application's EditText, Buttons etc.

In this step by step tutorial, we will see how to build a context menu based Android application.

Step 1: Create "mymenu.xml"

Right Click "your project" -> new -> Android XML file

CntAnd1.jpeg

Step 2: Edit your "mymenu.xml" file

<?xml version="1.0" encoding="utf-8"?>
<menu
  xmlns:android="http://schemas.android.com/apk/res/android">
  <group android:checkableBehavior="single">
    <item android:id="@+id/CutText" android:title="Cut"></item>
    <item android:id="@+id/CopyText" android:title="Copy"></item>
    <item android:id="@+id/PasteText" android:title="Paste"></item>
   </group>
</
menu>

Step 3: Edit your "ContextMenu.java" file

Before start editing, let's have a look at the Context menu work. A context menu generally works on a View. For that, first we need to "register" our view (or views) that will display the Context Menu on long touch. This is done by using "registerForContextMenu". It takes a View as an argument.

import android.view.ContextMenu;

import android.view.ContextMenu.ContextMenuInfo;

Used to Additional information regarding the creation of the context menu

CContextMenu.java

package com.CContextMenu;

import android.app.Activity;
import android.os.Bundle;
import android.view.ContextMenu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.ContextMenu.ContextMenuInfo;
import android.widget.EditText;
import android.widget.Toast;

public class CContextMenuActivity extends Activity {
   
/** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
       
super.onCreate(savedInstanceState);
        setContentView(R.layout.
main);

        EditText ed=(EditText) findViewById(R.id.editText1);
        registerForContextMenu(ed);
      //You can write multiple register statement as per your need
    }

      @Override
      public void onCreateContextMenu(ContextMenu menu, View v,
                  ContextMenuInfo menuInfo) {
           
// TODO Auto-generated method stub   
            MenuInflater inflater=getMenuInflater();
            inflater.inflate(R.menu.
mymenu, menu);
           
super.onCreateContextMenu(menu, v, menuInfo);
      }

      @Override
      public boolean onContextItemSelected(MenuItem item) {
            String str=
"";
           
if(item.getItemId()==R.id.CutText)
                  str=
"Cut";
           
else if(item.getItemId()==R.id.CopyText)
                  str=
"Copy";
           
else if(item.getItemId()==R.id.PasteText)
                  str=
"Paste";
            Toast.makeText(CContextMenuActivity.
this, str,1000).show();
           
return super.onContextItemSelected(item);
      }
}

OnCreateContextMenu have 3 arguments

  1. ContextMenu -> Used to build Context Menu.

  2. View ->The view for which the context menu is being built.

  3. ContextMenuInfo -> Extra information about the item for which the context menu should be shown.

OnContextItemSelected have 1 argument

  1. MenuItem -> Returns menu item selected from Context Menu.

Step 4: Start Emulator

  CntAnd2.jpeg

  CntAnd3.jpeg

  CntAnd4.jpeg

Summary

Context Menu is useful to give additional feature to our application.

Resources

Here are some useful related resources:

Login to add your contents and source code to this article
post comment
     

Sorry my friend. Derby can't be used in Android Application. Here is the link --> https://issues.apache.org/jira/browse/DERBY-4458 . You can read whole issue given in Apache.

Posted by Chintan Rathod Sep 10, 2012

very use full tutorial for all programming languages.MR.Chintan can i connect Apache Derby DataBase with Android Application.

Posted by Albin Ratheesh Sep 10, 2012

Thank you for your reply Mr. abhi...

Posted by Chintan Rathod Dec 24, 2011

Thank you jimmy for your reply...

Posted by Chintan Rathod Dec 24, 2011

Thank you for your great comment...

Posted by Chintan Rathod Dec 24, 2011
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Get Career Advice from Experts