/**
  * Called when the search key is pressd.
  *
  * <p>Use the below command to emulate the key press on devices without the search key. adb shell
  * input keyevent 84
  */
 @Override
 public boolean onSearchRequested() {
   if (Email.DEBUG) {
     Log.d(Logging.LOG_TAG, this + " onSearchRequested");
   }
   mUIController.onSearchRequested();
   return true; // Event handled.
 }