Android - SearchView does not open activity

I tried the SearchView customization tutorial described here: https://developer.android.com/training/search/setup.html

I created a menu with SearchView and configured SearchView. But my SearchResultActivity does not open when I click the Search button on the keyboard or in the submit button of the SearchView.

I also tried following the Search widget in the action bar does not start my search activity , but I can not get SearchView to open the second action. Can anyone help?

Here is my menu:

<menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" tools:context="com.sample.searchbarapplication.MainActivity"> <item android:id="@+id/action_search" android:orderInCategory="100" android:title="@string/action_search" android:icon="@drawable/ic_search_white_24dp" app:actionViewClass="android.support.v7.widget.SearchView" app:showAsAction="collapseActionView|ifRoom" /> </menu> 

Xml search configuration:

 <?xml version="1.0" encoding="utf-8"?> <searchable xmlns:android="http://schemas.android.com/apk/res/android" android:label="@string/app_name" android:hint="@string/search_hint" /> 

manifest:

 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sample.searchbarapplication"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <meta-data android:name="android.app.default_searchable" android:value=".MainActivity" /> <activity android:name=".MainActivity" android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /> </activity> <activity android:name=".SearchResultActivity" android:launchMode="singleTop"> <intent-filter> <action android:name="android.intent.action.SEARCH" /> </intent-filter> </activity> </application> </manifest> 

MainActivity, which has a SearchView in the toolbar:

 public class MainActivity extends AppCompatActivity { ActionMenuView mActionMenuView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setTitle(null); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_main, menu); SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE); SearchView searchView = (SearchView) menu.findItem(R.id.action_search).getActionView(); searchView.setSearchableInfo( searchManager.getSearchableInfo(getComponentName())); searchView.setIconifiedByDefault(false); searchView.setSubmitButtonEnabled (true); return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_search) { Log.v("click","click"); } return true; } } 

And SearchResultActivity.java:

 public class SearchResultActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_search); handleIntent(getIntent()); } @Override protected void onNewIntent(Intent intent) { super.onNewIntent(intent); handleIntent(intent); } private void handleIntent(Intent intent) { Log.v("query2","query"); if (Intent.ACTION_SEARCH.equals(intent.getAction())) { String query = intent.getStringExtra(SearchManager.QUERY); //use the query to search your data somehow Log.v("query",query.toString()); } } } 

Change Here is my layout file for MainActivity that contains SearchView. The contents of the include (empty) tag of the RelativeLayout without child views.

 <?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" tools:context="com.sample.searchbarapplication.MainActivity"> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:popupTheme="@style/AppTheme.PopupOverlay" > </android.support.v7.widget.Toolbar> </android.support.design.widget.AppBarLayout> <include layout="@layout/content_main" /> </android.support.design.widget.CoordinatorLayout> 

Edit 2: When I bring

  <intent-filter> <action android:name="android.intent.action.SEARCH" /> </intent-filter> 

in the MainActivity tag, MainActivity appears again in the search (when the search button on the keyboard or the search result button on the toolbar is pressed). But what I would like to do is to launch a new Activity that is not MainActivity. Is it possible?

My new manifest looks like this (note the additional intent filter in the MainActivty tag):

 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.sample.searchbarapplication"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <meta-data android:name="android.app.default_searchable" android:value=".MainActivity" /> <activity android:name=".MainActivity" android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /> <intent-filter> <action android:name="android.intent.action.SEARCH" /> </intent-filter> </activity> <activity android:name=".SearchResultActivity"> </activity> </application> </manifest> 
+7
source share
2 answers

This seems to be a common misunderstanding, I also had this problem when I first wanted to get a new action for the search results.

After re-checking the documentation here , I realized that "SearchableActivity" is actually the one that will display the results.

So, you will need to change this for MainActivity:

 <activity android:name=".MainActivity" android:theme="@style/AppTheme.NoActionBar"> <meta-data android:name="android.app.default_searchable" android:value=".SearchResultActivity"/> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> 

This is for SearchResultActivity:

 <activity android:name=".SearchResultActivity"> <intent-filter> <action android:name="android.intent.action.SEARCH" /> </intent-filter> <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /> </activity> 

Thus, the meta tag "android.app.default_searchable" must be within the scope of the action that triggers the search . And for the activity that will display the search, a filter intent and metadata for the search are required.

0
source

Update AndroidManifest.xml as follows

 <activity android:name=".MainActivity" android:theme="@style/AppTheme.NoActionBar"> <meta-data android:name="android.app.default_searchable" android:value=".SearchResultActivity"/> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER"/> </intent-filter> </activity> <activity android:name=".SearchResultActivity"> <intent-filter> <action android:name="android.intent.action.SEARCH" /> </intent-filter> <meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /> </activity> 

And in onCreateOptionsMenu replace

 searchView.setSearchableInfo( searchManager.getSearchableInfo(getComponentName())); 

from

 searchView.setSearchableInfo( searchManager.getSearchableInfo(new ComponentName(this,SearchResultActivity.class))); 
0
source

All Articles