Questions tagged [searchview]

is an Android GUI widget that provides a user interface for the user to enter a search query and submit a request to a search provider

SearchView is an Android GUI widget that provides a user interface for the user to enter a search query and submit a request to a search provider.

SearchView was added in API level 11 (Android 3.0).

2211 questions
0
votes
2 answers

android searchview grey border around input field API >= 26

I am getting a weird grey border around the input text field of a search view with emulators which have API >= 26. Only SearchViews inside of a fragment encounter this issue. Can you please advise on how this can be resolved? SearchView…
0
votes
1 answer

RecylcerView Filter not working in xamarin.android

I got trouble filtering data in recylerview through searchview action bar. I got an project example and trying to implement the method. But the data won't filtering. I put this on my fragment (search view) public override void…
Yeremia Danang
  • 139
  • 1
  • 2
  • 12
0
votes
2 answers

android - hide recyclerview if search is not made

I'm using Searchview to filter through firebase entries displayed in a Recyclerview. I want the Recyclerview to be gone when a search is not made, which is working fine until I go back from the the searched item to the main activity. The…
0
votes
0 answers

searchview with listview wrong result

I am having trouble with Searchview. I am developing an app in which i am using custom view for searching from a list. for that i am using searchview and listview. I am able to filter out the text from listview, but when i click on this filtered…
Avi Patel
  • 475
  • 6
  • 23
0
votes
1 answer

SearchView with Firebase RealTime Database is taking too long to bring results and it's expensive

I'm trying to get a specific user by it's mail with a searchview in my app. I have more than 7000 users in my database and with this searchview it takes like from 5 to 10 or 15 seconds to filter and bring data @Override public boolean…
0
votes
1 answer

how to set text in Searchview when listView item is clicked

I am working with SearchView. When I write query in Searchview a list of items(Suggestions list) is apppeared. When i click the list item the text of list item does not show in Searchview. I have tried Suggestion listener but application stops…
Tab123
  • 31
  • 4
0
votes
0 answers

SearchView Suggestions

I'm working with SearchView but I would like to add suggestions. Any help ? Here's part of my code public void recherche(String texte){ Query mQuery=…
0
votes
1 answer

Remove accentuation of words in searchView

I am trying to remove the accentuation of the searcher's words, but my code is not working. I would like you to look up an example word Você all of the variations of it Voce, Você, voce, você, VOCE, VOCÊ. @Override public boolean…
0
votes
1 answer

Search ListView won't work

I've been working on an Android project, which uses three different activities. They're basically all Listviews. The ListView isn't hardcoded in the project, it is being fetched from a DB. I'm having trouble trying to connect the Search function to…
Rve
  • 107
  • 2
  • 9
0
votes
1 answer

Search Widget functionality with Activity and Fragments

I have a search widget implementation that I am trying to setup to work in my application. This would not be too complicated if my adapter was being declared in my activity, however my application makes use of the tab viewPagers adpater and…
NVA
  • 1,662
  • 5
  • 17
  • 24
0
votes
1 answer

The searchview in recyclerview doesn't select the correct position after searching

I've found many people answering this question, and many worked for them, such as holder.setIsRecyclable(true); .however none of them worked for me. I can't seem to find the reason why... I would really appreciate it if anyone could help me. I…
0
votes
1 answer

Is there an event when a SearchView is focused?

I'm using a SearchView to enter a number from a bluetooth barcode reader. The SearchView is focused as follows: svActListaPedidosFragmento.setFocusable(true); svActListaPedidosFragmento.setIconified(false); The search is done as follows: private…
Fabián Romo
  • 319
  • 2
  • 14
0
votes
2 answers

how to add Search functionality in android recyclerView using Volley library

I am making android application in which I am doing search within RecyclerView Items. request is going to server successfully. Basically I am making search with keyword. The problem is how i can send search keyword to server and load data according…
0
votes
1 answer

How to use SearchView for a Hindi ListView

I have a SearchView in my ListView which is in Hindi Language.. When I use the search typing hindi it filters the list fine.. I want to get filtered list when the user searches in English For Example if the user searches "Mangal" it should filter…
amit
  • 709
  • 6
  • 17
0
votes
1 answer

Trying to create a recyclerview which will be filtered with a searchview

I have been trying to get create a recyclerview that will be filtered with a searchview. It displays all the items on the List that I provide rather than filtering. I am also using data binding. I am making a big mistake or I am missing something.…
1 2 3
99
100