Questions tagged [searchbar]
1017 questions
7
votes
3 answers
How to use autocomplete on search bar on Ionic 4?
I'm looking for some example but cannot see anyone googling it, just what i want is to hardcode 2 or 3 words, thank you so much. Do i have to look for on ionic 3? or in angular2 better?

M. Mariscal
- 1,226
- 3
- 17
- 46
7
votes
2 answers
AutoComplete Search bar in Google Maps
I'm creating an app based on places search. I would like to know how can I add a search bar into my Google Map, where the user can select a Place, and I can capture what the user chose.
I'm trying to include an autocomplete Search Box that is…

AlohaBombai
- 153
- 1
- 1
- 7
7
votes
2 answers
Xamarin - Remove SearchBar Underline in Android
I am trying to remove the black underline under the SearchBar Control on Android. I wrote a CustomRender that I thought would accomplish this, but no luck:
[assembly: ExportRenderer(typeof(NoUnderlineSearchBar),…

cfly24
- 1,882
- 3
- 22
- 56
7
votes
4 answers
updateSearchResults() not getting called
I have read similar problems and solutions on SO. But none seems to solve my problem. I am using Custom Search Controller and Custom Search Bar and func updateSearchResults(for searchController: UISearchController) is not getting called.
var…

Molly
- 247
- 4
- 15
7
votes
3 answers
Android Persistent Search Bar in Toolbar
I am fairly new to Android development. I went through the Google Udacity course and am currently trying to code an app. Specifically, I'm trying to switch over my current app (written in QT) to native Android.
What I am trying to do is making…

nerras
- 91
- 1
- 2
- 9
7
votes
6 answers
Highlighting search result in UITableView cell iOS Swift
I have implemented a search bar in a TableView. Now I want to highlight the result. For example, if I have typed two letters then those two letters should be highlighted in the resultant TableView that drops down from the search bar. Can anyone help…

Ganesh Kumar
- 1,631
- 2
- 21
- 35
7
votes
2 answers
How to get the Google Now searchbar into my app?
Google has just implemented their searchbar from Google Now into the play store application as you can see in the gif below.
How can I implement this actionbar searchbar into my own app?
I'd like to have the
style
hamburger animation
acess from…

Brian
- 1,318
- 1
- 16
- 33
6
votes
2 answers
Prevent rerender home menu while typing
I'm having a problem with my searchbar component. When performing a search, the request is successful and we get the desired display, however if we want to do a new search over it we automatically return to the main menu during typing. Can you tell…

Edwin Landsfield
- 63
- 7
6
votes
2 answers
Add Search Bar on the picker list SwiftUI
I tap on picker it will open screen with list of element on that screen, can we add Search Bar?
I implemented Country Picker, in the country list I am showing country name and country code so on that list screen add Search bar find out country…

Ravindra_Bhati
- 1,071
- 13
- 28
5
votes
3 answers
iOS: How to replace Search Bar background shine/glow with one color
How do I remove the shine/glow (gradient) from the background of a Search Bar. I would like to replace it with just one color.
From this:
To something like this

Nikolaj
- 53
- 1
- 4
5
votes
1 answer
How do you place default message in the semantic react ui search?
https://react.semantic-ui.com/modules/search
Below is images of how the semantic react ui search widget looks like. In the second image, I was wondering how you can put a prompt message to indicate to the user a message on what the search bar is…

darewreck
- 2,576
- 5
- 42
- 67
5
votes
4 answers
search bar in ios swift
I want to use search bar in my app.I am trying to use it but exceptions are coming . I have got an array of dictionary called member [[String:Anyobject]] and from this i have taken out the name and stored into an array data of type string and it is…

Angad Singh
- 59
- 1
- 1
- 5
5
votes
2 answers
Cannot Select TableViewCell when Search Bar is active - iOS Swift
I have a search bar that is connected to a table view. It works exactly as I want when the search bar is not active but cell selection is disabled when the search bar is active. I've debugged it and didSelectRowAtIndexPath is not even being called…

Adam Zarn
- 1,868
- 1
- 16
- 42
5
votes
3 answers
how to hide section title if result not found using searchbar in ios8
-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
if (_segment.selectedSegmentIndex==0)
{
return sortedKeys;
}
else
{
return sortedKeys1;
}
}
I use this code but i don't want section…

Asmita
- 477
- 8
- 20
5
votes
0 answers
UISearchController's searchbar is not responding
I am not able to get responding events on tapping UISearchController's search bar in iOS 8.
I am displaying custom view with dim background like alert view appearance, on pressing button in a view, where custom view has UISearchController's search…

user3898700
- 141
- 1
- 12