7

I'm trying to set up a screen so that when you click on the magnifying glass at the bottom of the phone it doesn't show the standard search area at the top of the screen: essentially, have it ignore (or catch it so I can do nothing) when the magnifying class is clicked on?

charlest
  • 925
  • 2
  • 10
  • 20

1 Answers1

5

Override the onSearchRequested method of Activity class:

public boolean onSearchRequested() {

        // Do whatever you want here.


        return true;
}
Mudassir
  • 13,031
  • 8
  • 59
  • 87