Fix extra space in Suggestions Popup

There was extra space shown when there are no suggestions to show
in the material theme.

Bug: 27559349
Test: manually tested UI
Change-Id: I861fe1f4c534f8c9af6b886b9f6c844e7431db2f
diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java
index 04a8265..8d59340 100644
--- a/core/java/android/widget/Editor.java
+++ b/core/java/android/widget/Editor.java
@@ -3591,6 +3591,8 @@
                 mIsShowingUp = true;
                 super.show();
             }
+
+            mSuggestionListView.setVisibility(mNumberOfSuggestions == 0 ? View.GONE : View.VISIBLE);
         }
 
         @Override