Questions tagged [searchactivity]

14 questions
6
votes
1 answer

Implementing the custom suggestion for search activity android

I am implementing the custom suggestion list for search activity from this blog http://weblog.plexobject.com/?p=1689 in doSearchQuery not able understand what he did it. Another thing is when I search by typing for e.g. month name and start with the…
Pratik
  • 30,639
  • 18
  • 84
  • 159
3
votes
1 answer

Voice Search is not working from ok google

I have integrated voice search from ok google using below. AndroidManifest Entry :
SimpleCoder
  • 1,665
  • 1
  • 21
  • 34
2
votes
1 answer

startSearch does not start search activity

I added a SearchView in my activity and defined a search activity to handle the search. I added the OnQueryTextListener and called startSearch() method from onQueryTextSubmit() method. When I set global search as true, it launches google search.…
Noorul
  • 939
  • 1
  • 11
  • 21
2
votes
1 answer

Android: Show search query in SearchView of a SearchActivity

I have few activities in my app which are meant to perform some specific tasks. I would like to have a search features on almost all of these activities. My design is as below: Activity1: With SearchView widget in Actionbar Activity2: With…
kiran
  • 223
  • 4
  • 12
1
vote
0 answers

Different Searchable configuration for each fragment (Android)

I have an Activity (MainActivity) with a Navigation Drawer, and i change the main container with the appropriete Fragment every time a section (lets say i have tow: Tags and channels) is selected. I want to add a custom Search activity for each…
1
vote
1 answer

implement search in android

* this is my Activity * I want to add search from the list of my items but cannot do so. See the code, if needed more then i will add more code. public class FacultyAndStaffActivity extends AppCompatActivity { ListView list_items; …
1
vote
2 answers

What is R.layout.search?

I'm creating a search widget and a searchable activity. I followed the android developer guide and have this so far. Here is my searchableActivity.java @Override public void onCreate(Bundle savedInstanceState) { …
cut936
  • 57
  • 2
  • 5
0
votes
2 answers

Search in my StartActivity and show the results in my ResultActivitty

I am new to app development and i've run into a problem. Before my weather app only had one activity with search and results on the same layout file. Now i have divided it into a StartActivity with just a EditText to enter the city name and a…
slahslah90
  • 39
  • 5
0
votes
0 answers

Two SearchView components with different searchable configuration

Hi I have problem with planning implementation of specific search interface. I am making navigation application where you can navigate from point to point. For this I need two seachviews both with different searchable configuration, where I can…
0
votes
1 answer

SearchActivity customized suggestions : Adapter not refreshing

I have a simple SearchActivity using basic Android functionality. However, I have customized the 'previous search' suggestions to display on a ListView on the mail_layout. Problem Removal and addition of values does NOT show up on the UI, in…
0
votes
3 answers

Android Search view not invoking search activity

Please dont mark as duplicate as I have viewed several other same question and those solution didnt worked for me. category_menu.xml
dharmesh
  • 308
  • 1
  • 13
0
votes
1 answer

onSearchRequested does not start search_activity

I want to start a search activity when clicking a button, right now the oncreate() is not being called. I suspect an error in my AndroidManifest.xml but can't find it.. Button click event within Main_Activity public void search(View view) { …
MaMiFreak
  • 789
  • 2
  • 11
  • 26
0
votes
0 answers

android-How to return to same activity after search is done in a single activity

I have implemented my search widget in the Main Activity.. And my MainActivity is handling all the searching feature.. When the query is executed the results are come up as per desired.. But the real problem is while the search query result are…
user3794646
  • 23
  • 1
  • 10
-2
votes
1 answer

How to start SearchActivity when clicked on edit text

I followed this link for creating search interface. But there was no proper explanation about how to start search activity when clicked on edit text but there is an explanation for only menu items. My interface is in NoActionBarStyle as shown in…