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

learn more… | top users | synonyms

1
vote
1answer
24 views

SearchView not searching

I am trying to implement search functionality in my android app using SearchView within the layout of my app. I purposefully chose to have it in the layout rather than in the Action Bar. The problem ...
0
votes
0answers
25 views

android - collapse searchview after submit

I am using searchview in my application ( without action bar). How can i collapse searchview after query text submit ? I have these listeners ; @Override public boolean ...
0
votes
0answers
7 views

ActionbarSherlock SearchView crash in android 4.x

I'm using SearchView in ActionbarSherlock. I't works correctly in android 2.3 but crash in android 4.x <com.actionbarsherlock.widget.SearchView android:id="@+id/provinceFilter" ...
0
votes
0answers
18 views

Searchview closing issue

I want to handle collapsing state but I can not handle onActionExpandListener. I use actionbarsherlock and here are my codes. Where do I make mistake? @Override public boolean ...
1
vote
2answers
24 views

How can I tell when text is being typed into my Android SearchView on the ActionBar

I want to disable certain features of my app while the user is entering text for a search. The xml for the relevant item in my ActionBar is <item android:id="@+id/actionbar_search" ...
1
vote
1answer
53 views

How to make SearchView behave in a standard way?

When adding a SearchView to the menu (see example below), it's icon doesn't change and it behaves in a non-standard way. For example, long clicking on the search menu button should have popped the ...
0
votes
0answers
43 views

Custom buttons in searchview widget (in actionbar)

Is it possible to cutomize the searchview widget as to add a button inside the widget? When adding android:voiceSearchMode="showVoiceSearchButton|launchRecognizer" to the searchable config file a ...
0
votes
1answer
28 views

Android SearchView suggestions appear above the widget

I'm using SearchView away from the actionbar, as a view in the activity main layout. The problem is that suggestions appear above the widget like this How to display it below the widget? Am I ...
0
votes
1answer
105 views

how to disable the collapsing of search view on back key pressed android

I have used Sherlock search view widget in action bar for search menu. The code snippet for initializing the search view MenuItem item = menu.findItem(R.id.menu_search); ...
0
votes
0answers
24 views

saving activity state along with fragments

In My application i have an activity with 3 fragments. Each has an different custom list adapter implementation.On clicking search view option menu in action bar the application switches to the search ...
0
votes
2answers
71 views

Unable to hide the virtual keyboard of SearchView iconfiedbydefault(false)

I have a search view which is set as expanded by default with default search query but i don't want the virtual keyboard.In below code i tried to hide keyboard in onCreateOptionsMenu but still ...
0
votes
0answers
26 views

how to add string query on SearchView into url

i want to input some string/query such as :"aoyama"" in searchview (search), after that, the string send to url and my url could be "www.aaa.com/agen=aoyama" then the code will process the json. i ...
0
votes
1answer
114 views

null pointer exception in sherlock action bar with option menu

I want sherlock action bar with default sherlock search widget.The search icon is displayed on sherlock action bar but onclick its force closing .My Logcat shown below 04-17 11:44:48.877: ...
1
vote
0answers
69 views

Android SearchView empty string

Im trying to use a SearchView and I got everything to work except when I want to search an empty string. The onQueryTextChange does react when I remove the last character but I want the user to be ...
0
votes
2answers
51 views

Android SearchBar Without Clicking Button

I have been trying to find the answer but maybe I am not asking google correctly so here it goes: I have a search view in my android app that has the top menu item as a search input, etc. I click the ...
0
votes
1answer
115 views

ActionBar SearchView not fully expanding in landscape mode

When using the action bar search interface, the widget expands to occupy the full width of the screen in portrait mode, but stops short in landscape mode. Is there a way to set the expansion layout ...
4
votes
1answer
376 views

Android - searchview with auto complete feature inside action bar

I want to build an app that has sherlock action bar and a search view inside it. However, i want this searchview to have autocomplete feature like what autocompleteTextView has. Is there any straight ...
8
votes
2answers
380 views

Android Actionbar SearchView as Autocomplete?

I am using a SearchView in the Action bar. I want to use autocomplete feature on the search veiw to get results from the Database ? Is this Possible ? Or do i need to use a custom text box and then ...
1
vote
1answer
214 views

How to implement search widget with a listview using SherlockActionbar?

So, I'm trying to implement this code (http://stackoverflow.com/a/14085524/2213992) on my application but no success so far. This is my MainActivity.java: import java.util.List; import ...
0
votes
0answers
100 views

Filtering android listview

Hi just like to ask how can i use my searchview to filter listview, if my listview is populated by parsing json data. I have set up a searchview and refresh button in my actionbar. and I can't seem to ...
0
votes
1answer
66 views

How to close/iconify SearchView after pressing on “Find” button?

I am using SearchView as described in tutorial Creating a Search Interface. I use option android:launchMode="singleTop" to perform search in the current activity. After pressing on "Find" button ...
0
votes
2answers
498 views

Actionbarsherlock searchview with suggestions

My developing enviorment is Eclipse and i'm using the Actionbarsherlock. I want to do once i start to write text inside the actionbarsherlock SearchView it will drop down a list of suggestions. Like ...
0
votes
1answer
52 views

How to implement custom search on the server database in Android 2.3?

I have to implement custom search in my application for android 2.3.I have some EditText in which user type one letter and then I send response to the server, retrieve all the results matches this one ...
0
votes
0answers
26 views

Android SearchView with REST call

I would have a big queston. In my andriod app i am implementing a actionbar with a searchview and i would like to know how can customize the searchview that it will displays results which i get from ...
3
votes
2answers
1k views

Android ActionBar: collapsible SearchView with action button

How to build actionbar with collapsible search view with single action item visible, when search view is expanded? To be more descriptive, this is what I need: Note that there are other menu items ...
1
vote
0answers
38 views

Android SearchView with other items in ActionBar

I am using Android SearchView as a second item in the actionbar item layout. When it is expanded the first item stays visible. Therefore the area for the searchview will be smaller. It does not take ...
0
votes
1answer
504 views

ActionBar Sherlock, Fragment and SearchWidget

As the title says i have a problem implementing search widget in some Fragment. My problem is that when i use inflater to inflate custom view inside a onCreateOptionsMenu and after that I find ...
1
vote
0answers
89 views

SearchView and keyboard

I have an activity that has a SearchView directly above a ListView. The activity works by the user typing text in the SearchView which is then used to filter the content of the ListView. On a 4" ...
1
vote
0answers
82 views

Soft keyboard covers all the window even with adjustPan

I have a problem with my SearchActivity. It has a SearchView made with ActionBarSherlock . when I click on the eyeglass in landscape orientation I have the softkeyboard to cover all the screen. But ...
1
vote
1answer
196 views

Start Activity with SearchView open

how can I start an activity with a SearchView with the text field open. In this way I could search without having to click on the spyglass. I am using Sherlock Action Bar. Here is my code: ...
0
votes
0answers
145 views

SearchView collapse animation in ActionBarSherlock

I have implemented ActionBarSherlock into my android project with no problems. I am now trying to add a search widget to the ActionBar and have done that successfully. Now, I would like to have the ...
1
vote
2answers
107 views

How to replace Fragment from Activity Above FragmentActivity

I need assistance problem solving. Not necessarily looking for code, though that wouldn't be rejected! I have a central FragmentActivity housing a FrameLayout that I use to swap Fragments as the ...
1
vote
3answers
119 views

Android Back key cycling focus instead of returning to previous activity

I have this layout Two SearchView widgets One ListView When I press the android back key the focus cycles between the filter box and the search box. I want to go back to my previous activity, but ...
0
votes
1answer
94 views

Android SearchView: search again when spyglass key is pressed

I am using a SearchView widget to search text in a ListView. When entering text a virtual keyboard opens. I want to repeat the search when the "spyglass key" is pressed. How can I intercept the ...
0
votes
2answers
101 views

SearchView setOnClickListener NOT WORkING

Can anyone see why this is not working.. My SearchView is in the ActionBar and is always shown. I want to know when a user PRESSES the searchview... not when it expands or gains focus. This code ...
0
votes
1answer
316 views

Create SearchView in android with custom layout

I want to create a view like this : It was simple to do the SearchView but how to create a extending layout below action bar or however to provide some search selection to user while searching. I ...
0
votes
0answers
158 views

SearchView with a suggestion CursorAdapter attached, being extremely slow?

I set up my searchview like follows: searchView = (SearchView) menu.findItem(R.id.menu_search).getActionView(); searchView.setOnQueryTextListener(this); searchAdapter = new SimpleCursorAdapter(this, ...
0
votes
3answers
1k views

Actionbarsherlock searchview: setOnQueryTextListener

I'm trying to make a filter in a List using ActionBarSherlock's search view. The code I currently have is the following: @Override public boolean onCreateOptionsMenu(final Menu menu) { ...
0
votes
0answers
112 views

SearchView UI component in Android 2.2

I want to know that if I can have a SearchView UI component in my app(that is in API level 8). The SearchView, in my knowledge was included from API level 11. Is there any component other that ...
0
votes
1answer
84 views

Hardware options button triggering SearchView instead of Overflow Menu

So I have this code.. I'm using a hack (for the lack of a better word) to force an overflow menu. I'm using SubMenu to make an overflow item. Here's my code: @Override public boolean ...
0
votes
0answers
180 views

implementing search using searchmanager and searchview in android ICS and above

Hi I am trying to implement search functionality on action bar in my android app, for that I am using searchmanager and searchview, but the problem with using searchmanager and searchview is that its ...
1
vote
2answers
150 views

Android Searchable Configuration not getting attached to SearchView

I'm currently working on adding search ability to my app but I'm facing some problems. First of all I'd just like to clear out that I don't want to create a search activity, I just want to use the ...
0
votes
1answer
446 views

Android SearchView onclick

I have searchView which looks like this: private void setupSearchView() { mSearchView = (SearchView) getActivity().findViewById( R.id.search_view_neue); setSearchViewBackground(); ...
-1
votes
1answer
39 views

Pass additional data to SearchActivity with SearchView

When submitting search query to SearchActivity I need to also pass additional String How can I do this?
0
votes
1answer
577 views

search with Sherlock ActionBar SearchView setOnKeyListener

I am trying the ActionBarSherlock SearchView. unfortunately the public boolean onKey(View arg0, int arg1, KeyEvent event) is not fired. Do you know the reason? I see from this post ...
0
votes
2answers
198 views

How do I pass extra variables during a search invoked by a SearchView/ Widget?

I am successfully using a search widget in my action bar to perform a search following this guide. The search is fine, but I'm wondering how to pass additional variables on a search. The same guide ...
1
vote
1answer
207 views

the search view in the action bar move to left when I click on it

I put search view in the action bar using <menu xmlns:android="http://schemas.android.com/apk/res/android" > <item android:id="@+id/menu_search" ...
0
votes
1answer
434 views

how to change android SearchView text

Is there a setText() method for SearchView or something like that? I try to set the search text in the searchView like this but there is no method for like this. searchView.setText(searchToken);
0
votes
1answer
420 views

How to change SearchView default icon?

I've used "Android Action Bar Style Generator" in order to generate my own Holo theme. Then I've added two icons to the action bar, one for a searchFilter and one for a file picker, both icons are ...
0
votes
1answer
254 views

How can I hide the SubMenu when click the SearchView icon on ActionBar using HoloEveryWhere?

A searchview and a submenu are put on my actionbar in my demo like this: @Override public boolean onPrepareOptionsMenu(Menu menu) { SearchView searchView = new ...

1 2 3