commit | 5e8f2b9cf44263ac77a21653eb3c012a98c3587f | [log] [tgz] |
---|---|---|
author | Michael Kolb <kolby@google.com> | Tue Jul 19 13:22:32 2011 -0700 |
committer | Michael Kolb <kolby@google.com> | Tue Jul 19 13:22:37 2011 -0700 |
tree | 64bc3d78d5a7bd0995be40eb8a9378d9a9e97d21 | |
parent | e57c709438aec9d64e3de7eefd87f333fcd2ae7c [diff] [blame] |
show voice icon if in voice mode Bug: 5005932 The voice icon is shown in the url bar in non-focused state when there are voice results Change-Id: Id89052938768cb1b4e17895986d49129df78017d
diff --git a/src/com/android/browser/UrlInputView.java b/src/com/android/browser/UrlInputView.java index 8b5c292..2acc69b 100644 --- a/src/com/android/browser/UrlInputView.java +++ b/src/com/android/browser/UrlInputView.java
@@ -187,6 +187,10 @@ } } + int getState() { + return mState; + } + void setVoiceResults(List<String> voiceResults) { mAdapter.setVoiceResults(voiceResults); }