B4A Library [Class] SearchView - More powerful alternative to AutoCompleteEditText - Erel    Sep 30, 2021   (20 reactions)   tags: search, Auto complete Edit: better to use B4XDialog + B4XSearchTemplate
SearchView is made of an EditText and ListView... an item from many items.
Advantages over AutoCompleteEditText:
SearchView uses an internal index... B4A Tutorial Large & Searchable List with SearchView + B4XSerializator - Erel    Aug 12, 2021   (11 reactions)   tags: search large database SearchView was introduced in 2012. SearchView shows a list with an EditText that acts as a filter. It uses an in-memory index to find the matching items. SearchView is very useful, however it was limited... can easily load 10,000 items or more to SearchView. The B4J program will create the index and save... is cross platform (with some changes to work with iTableView). - The SearchView class is a modified... B4i Library [class] SearchView - Erel    Feb 1, 2016   (6 reactions) This class is similar to B4A SearchView class. It allows the user to filter a list of items based on a term (prefix matches first followed by other matches). It uses the new RichString class to highlight the matching terms. Note that the scrolling and filtering performance in release mode are very good. It can be a bit jumpy in debug mode. 8SrYXQirXHY New version of SearchView is now available. It is implemented as a custom view. It also properly handles the keyboard state.... B4J Library [custom view] SearchView - Erel    Jul 24, 2017   (16 reactions)   tags: B4X Searchview A custom view similar to B4A and B4i SearchView: https://www.b4x.com/basic4android/images/searchview.gif Depends on jReflection and JavaObject (to override the default keyboard behavior). You need to add the SearchView layout file, SearchView class and TextFlow class to your project. Usage example: Sub Process_Globals Private fx As JFX Private MainForm As Form Private SearchView1 As SearchView End Sub Sub AppStart (Form1 As Form, Args() As String) MainForm = Form1 MainForm... B4A Example ContactSearcher - Combines ContactsUtils with SearchView - Erel    Jul 29, 2013   (17 reactions) This example uses SearchView to allow the user to search for any contact. The user can enter a substring of the contact name or one of his phone numbers. This is a modified version of SearchView. Unlike the standard SearchView this version allows us to use different text for searching. The item itself can be any type of object. Note that the phone number "search text" is stripped from any non-digits characters. In this implementation the query text (the user input) is not stripped... B4A Question setlayout not exist for SearchView? - fifiddu70    Aug 25, 2024 i need to set the SearchView setlayout for open app in multi size screen, for example the edittext.setlayput is present but SearchView not present.... B4A Question ID in SearchView - Sergey_New    Oct 1, 2023 How can I pass the ID of each entry to SearchView? The records is not unique.... B4i Question Searchview Scroll to top - tufanv    Jun 28, 2022 Hello, I want the list to scroll to top everytime searchview is loaded. In searchview module, I tried to set lv.scrollto but it needs a section (and row) to scroll to but I don't use sections there. Is there an easier way to scroll to top for this? Best, edit: I have managed to use this sub to call it from the main module to scroll to top: Public Sub lvscroll lv.AddSection("","") lv.ScrollTo(0,0,lv.SCROLL_TOP) End Sub ... Wish SQLSearchView - SearchView.BuildDatabase - Peter Simpson    Apr 1, 2022 Hiya Erel,
B4J SQLSearchView has a BuildDatabase method using a list (SearchView.BuildDatabase(xx, xx, List), it would be really nice if B4A and also B4i also had BuildDatabase. I was caught out... B4A Library [B4X] [XUI] - MiniSearchView AutoComplete field - Erel    Apr 11, 2024   (43 reactions)   tags: B4X XUI Search AutoComple, B4a, type search A cross platform, compact version of SearchView. 68398 https://www.b4x.com/basic4android/images/SS-2018-05-29_15.27.50.png https://www.b4x.com/basic4android/images/SS-2018-05-29_15.28.34.png Usage instructions: - Add a reference to MiniSearchView library. - Add MiniSearchView custom views with the designer. - Call MiniSearchView.SetItems to set the items. You can change the various colors and the font in the designer. Example and library are attached.... Page: 1   2   3   4   5   6   |