From 35df87c6319863beed9fd95d0a279e34ff94e92e Mon Sep 17 00:00:00 2001 From: Mike LeBeau Date: Wed, 24 Jun 2009 13:06:39 -0700 Subject: [PATCH] Fix the weird anchoring of the search dropdown when pivoting into an app for search. (This started when we moved to system process, not sure why then, but we should be getting the dropdown to update at this point regardless.) --- core/java/android/app/SearchDialog.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/java/android/app/SearchDialog.java b/core/java/android/app/SearchDialog.java index 77fce624c5746..6ddf50f0d4a55 100644 --- a/core/java/android/app/SearchDialog.java +++ b/core/java/android/app/SearchDialog.java @@ -1322,6 +1322,7 @@ public class SearchDialog extends Dialog implements OnItemClickListener, OnItemS String query = intent.getStringExtra(SearchManager.QUERY); setUserQuery(query); + mSearchAutoComplete.showDropDown(); } /**