I am trying to show the Option menu
on button click.How can I do this can anyone tell me.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With