Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Option Menu on Button click

Tags:

I am trying to show the Option menu on button click.How can I do this can anyone tell me.

like image 734
Altaf Avatar asked Apr 04 '11 01:04

Altaf


1 Answers

You can use openOptionsMenu to programmatically open the options menu.

If you have a Button, you can do:

button.setOnClickListener(new View.OnClickListener() {     @Override     public void onClick(View v) {         openOptionsMenu();     } }); 

or else set android:onClick="myOnClickMethod" on your Button in xml and then have:

public myOnClickMethod(View v) {     openOptionsMenu(); } 

in your activity.

like image 81
Matthew Willis Avatar answered Sep 29 '22 11:09

Matthew Willis