Use a different column for retrieving suggestion text

Use SUGGEST_COLUMN_TEXT_1 instead of SUGGEST_COLUMN_QUERY as the
latter can return strange duplicated text.

SUGGEST_COLUMN_TEXT_1 (from docs):
Column name for suggestions cursor. Required. This is the primary
line of text that will be presented to the user as the suggestion.

b/10818358

Change-Id: Ib442a4799db290eb314b8b36b25cde8495034416
diff --git a/src/com/android/mail/ui/MailActionBarView.java b/src/com/android/mail/ui/MailActionBarView.java
index 7703bd1..64a1238 100644
--- a/src/com/android/mail/ui/MailActionBarView.java
+++ b/src/com/android/mail/ui/MailActionBarView.java
@@ -666,7 +666,7 @@
         // what is in the text field
         String queryText = mSearchWidget.getQuery().toString();
         // What the suggested query is
-        String query = c.getString(c.getColumnIndex(SearchManager.SUGGEST_COLUMN_QUERY));
+        String query = c.getString(c.getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_1));
         // If the text the user typed in is a prefix of what is in the search
         // widget suggestion query, just take the search widget suggestion
         // query. Otherwise, it is a suffix and we want to remove matching