1

In my Android app, I want users to be able to learn what a button does by performing a long touch on it, showing a description that looks like the "More options" description of an overflow menu button.

More options

Also, can I disable the vibration that is caused by long clicking the overflow menu and can I disable the description altogether?

Haris Gušić
  • 197
  • 2
  • 12

1 Answers1

1

You can create Toasts message on item long click and set toast message to gravity top

FnR
  • 75
  • 1
  • 5
  • Thank you. Android has some weird naming conventions. Do you know how I can disable or edit the toast that shows when I long click the overflow menu icon on the toolbar? – Haris Gušić Jul 26 '17 at 15:01
  • Can you explain a little bit more? – FnR Jul 26 '17 at 16:14
  • 1
    Whenever I long click the overflow menu icon https://prnt.sc/g0m0p0 (the button that is circled red), a toast saying "More options" appears. How can I edit the text of the toast, so it just says "Options". – Haris Gušić Jul 26 '17 at 17:12