Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable the Long-Press event of Action Bar menu Item?

In Android, I Have created an action bar and added few menus item to it. When I click menu items, I am performing some action.

On long click I find a empty toast message. My Question is how to disable the toast on long click?

like image 509
Rojesh Avatar asked Dec 27 '25 15:12

Rojesh


1 Answers

Instead trying to disable the empty "toast like" view, you may add the "android:title" attribute to describe what's the action actually do.

Example:

    <item android:id="@+id/action_websearch"
      android:icon="@drawable/action_search"
      android:title="@string/action_websearch"
      android:showAsAction="ifRoom|withText" />
like image 82
Fate Chang Avatar answered Dec 31 '25 19:12

Fate Chang



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!