tags:

views:

54

answers:

2

I create one TextField.When i click the TextField i wish to open the menu .how to do this ?

+2  A: 

check out the Documentation

Praveen Chandrasekaran
A: 

If talking about the OptionsMenu: check

onCreateOptionsMenu(Menu menu)

If this is some kind of Activity U can find the view based on the screen coordinates and use

StartActivity(Intent)

Remember that is not recomended that you change the regular behavior of the phone.
The optionsmenu should be opened`with the options key on the phone.

Lord Otori