summaryrefslogtreecommitdiffstats
path: root/src/com/android/browser/SuggestionsAdapter.java
Commit message (Collapse)AuthorAgeFilesLines
* Remove voice search handlingMichael Kolb2012-05-031-45/+21
| | | | | | Bug: 6439925 Change-Id: I1b7161a67fa0c20d87f147d6ed19c02e53093054
* Remove the psychic labs feature.Narayan Kamath2011-11-181-4/+0
| | | | | | | | Reverts the UrlInputView to a standard autocomplete that causes less trouble for IMEs. bug:5598837 Change-Id: If469d76f4feda88e4a122264a39d317737404578
* Fix omnibox orderingJohn Reck2011-09-061-2/+0
| | | | | | | | | Bug: 5155207 The group by to prevent dupes screwed up the ordering. Allow dupes for now so that ordering is correct (duples will only appear if you actually have duplicate bookmarks) Change-Id: Ibde0ea715ae2702a16e918843efbc997bb51d5df
* Allow suggestions to span 2 linesJohn Reck2011-07-291-0/+2
| | | | | | Bug: 4603029 Change-Id: If0d914a559d32f33a7b75cd1103a6a972082f396
* Turbobox!John Reck2011-07-281-10/+10
| | | | | | | | Bug: 5080207 Fix the omnibox's slow performance. It's now pretty snappy if I do say so myself Change-Id: I42d9ed87bcfa1a30f2413e0241afc254ae1e472d
* Prevent duplicates in omniboxJohn Reck2011-06-271-0/+3
| | | | Change-Id: Idf91591a981543fb84a73d08e3c5bbc2c7d23d6f
* Remove account adding from getBookmarksUriJohn Reck2011-05-131-1/+0
| | | | | | Omnibox now searches all accounts Change-Id: I8b4fbed5efd420f787648340e8c1e9d82d60b24c
* Browser settings refactorJohn Reck2011-04-261-3/+5
| | | | Change-Id: I6fc1b21f7ea692fbe37a17bf900e9b7408a9c077
* fix qc urlbar position and show in auto-loginMichael Kolb2011-03-161-8/+0
| | | | | | | | | | Bug: 4108540 Show the url bar when auto-login is in progress Move url bar to top in QuickControls to work with instant search Remove suggestions reversal Change-Id: I0040fa74dd26b5eecdab278c0104199fe5269aba
* Implement the psychic search engine.Narayan Kamath2011-03-021-26/+57
| | | | | | | | | | (a) Add a new subclass of SearchEngine that receives suggestions provided by psychic and displays them in the suggestions dropdown. (b) Add a Labs setting that can turn this feature on or off. Change-Id: Icae05b6b55f489278028e5af560d9b36014a0f59
* Add autocomplete to the browser UrlInputView.Narayan Kamath2011-03-021-5/+5
| | | | | | | | | | | | | | | | Code and tests based on the google search app. A lot less code would be duplicated if we could somehow override AutoCompleteTextView but that is made impossible by it calling a bunch of stuff in its constructor. To do so would require changes to the existing API. I've verified that the unit test passes, but other browser tests appear to fail - even on a clean branch with none of my changes. Also fixes a minor bug in SearchEngines.getSearchableInfo( ). Change-Id: Ic61bc6b8fa27cd210a45dc181ebf15accf503244
* Remove explicit calls to onFilterCompleteJohn Reck2011-02-011-5/+1
| | | | | | | | | Bug: 3410428 SuggestionsAdapter was explicitly calling onFilterComplete when it shouldn't. This seems to have been a workaround for a fixed bug. Change-Id: Ic0fad44e60ad1c32708d31879a46c3e9c6ca906c
* Disable SearchSuggestions in incognito modeJohn Reck2011-01-241-1/+8
| | | | | | Bug: 3336558 Change-Id: Ie88eddee0f4931a206ba45cec708cdbb69cce008
* Omnibox tweaksJohn Reck2011-01-181-2/+2
| | | | | | | | Bug: 3345000 Move nav suggest after all local results including history and changed second line to a slight green color Change-Id: Ia9f8376633b666dc8706a0ea125a999066fa60a0
* remove Log statementMichael Kolb2011-01-131-2/+0
| | | | Change-Id: I6e3abd7577b83e0ea52284f5294e5cc9616caae8
* fix voice search suggestionsMichael Kolb2011-01-131-7/+18
| | | | | | | | http://b/issue?id=3348242 In voice search mode, make sure the suggestions are routed via tab's activateVoiceSearch Change-Id: I464f186510047a1d2b0d6b2be7809ec66ec74b22
* Reverse suggestions for quick controlsJohn Reck2011-01-101-1/+9
| | | | | | Reverses the URL suggestions when in quick controls mode Change-Id: Icd010f4b5803a8633f5b41fb393a91ff0c2206cb
* Single column omnibox and pressed selectorJohn Reck2010-12-201-111/+17
| | | | | | | | | Bugs: 3275725, 3270476 Converted omnibox to single column in landscape, made each item slightly smaller to fit 5 instead of 4 rows in landscape, added the correct pressed selector, and added basic keyboard support Change-Id: I0b2774817f055c1b17289a33975ed4f8f088db45
* Fix annoying suggestions flashingMichael Kolb2010-12-151-2/+1
| | | | | | | Voice search mode re-introduced the suggestions to flash This change fixes it Change-Id: Ic19cdcd1de6d27c216edc7bb48b0d3a210c19181
* Enable voice searchMichael Kolb2010-12-151-21/+41
| | | | | | | | | http://b/issue?id=3039695 send voice search intent implement voice search title bar also fixes another Urlbar focus handling bug Change-Id: Icdcbec9ffff586d445545cc7fe86ca045022f381
* Makes CombinedCursor sync awareJohn Reck2010-12-101-0/+2
| | | | | | | Bug: 3192765 SuggestionsAdapter.CombinedCursor was not setting account parameters Change-Id: I57c341383970105fde8cbb2a6cde3831125cef1b
* Greatly improved suggestion result speedJohn Reck2010-11-231-67/+116
| | | | | | | | | Bug: 3201805 This change does 2 key things. The first is it supports recycling views. The second is local suggestions (bookmarks and history) no longer wait for remote suggestions (search suggestions) Change-Id: Ic659ce486a5b674490248b8c1ffb9a8c24afe609
* Fixes the selection for search historyJohn Reck2010-11-231-1/+1
| | | | | | | | | Bug: 3224800 The selection in the SuggestionsAdapter was wrong causing previous searches to only appear when the entered text exactly matched the previous search. Change-Id: I4fb2c2ede8ee5f8053e582e33a9fe31665364eca
* Omnibox supports search extra dataJohn Reck2010-11-101-3/+8
| | | | | | | | Bug: 3025590 Fix the omnibox to support passing on SearchManager.EXTRA_SEARCH_DATA in searches done from the suggestion adapter. Change-Id: Ica6462ef27722c3bbcc0508178ce431e87e27e86
* Fixes tab title not updating correctlyJohn Reck2010-10-291-28/+2
| | | | | | | | | | Bug: 3130982 Fixes the bug where the tab title would stay the same until a new title was received. Now the title changes to "Loading..." until a new title is received, or changes to the URL if the page finishes or is canceled without receiving a title. Change-Id: I667acbaeea5383b6a434c20337d404f49b947b0d
* URL autocomplete shows URL twicesJohn Reck2010-10-261-1/+3
| | | | | | | | | | Bug: 1377072 For pages that do not have a title, the url autocomplete would show the url twice, once as the title in large font and once as the url below it in a smaller font. This has been fixed to only show the url once as the title, eliminating the url line. Change-Id: I873314fcb8f06322cecf869c79ffece6d4404a03
* Fixed lock icon, url touch area, dropdown visibilityMichael Kolb2010-10-141-12/+12
| | | | | | | | | | | Bug 2989058 Bug 3098918 added light colored icons (not final assets) added click handler to generic web icon fixed suggestion adapter result count Change-Id: I1842335be22eab6da2dd4187b2147e535a9ac77c
* Fix suggestion edit buttonMichael Kolb2010-10-141-0/+2
| | | | | | | | | | Bug 3052626 Bug 3052664 added vertical divider refresh dropdown when sugegstion is selected Change-Id: I3f2e72bbd9a93ccc3a7968e646493945c0052d2b
* new two column suggestion dropdownMichael Kolb2010-09-271-0/+591
http://b/issue?id=3039704 Change-Id: I8b32553682cc547c695d0089e6633ead77426869