67

我对 java 和 android 开发很陌生;我一直在开发一个应用程序,我想要一个带有SearchView. 我看过谷歌的例子,但我无法让它工作。我一定是做错了什么,我即将放弃应用程序开发:DI 已经搜索过,但我没有发现任何有用的东西。也许你们可以帮助我:)

问题:我让搜索视图按原样打开,但在那之后什么都没有发生,我注意到我的searchManager.getSearchableInfo(getComponentName())返回 null。此外,我给出的提示也没有显示在我的搜索框中,这让我相信应用程序可能找不到我的 searchable.xml?说得够多了:)

MainActivity.java

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);

        // Get the SearchView and set the searchable configuration
        SearchManager searchManager =
            (SearchManager) getSystemService(Context.SEARCH_SERVICE);
        SearchView searchView =
            (SearchView) menu.findItem(R.id.menu_search).getActionView();
        searchView.setSearchableInfo(
            searchManager.getSearchableInfo(getComponentName()));

        return true;
    }
}

可搜索的.xml

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

安卓清单

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.searchapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

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

        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>           
        </activity>

        <meta-data android:name="android.app.searchable"
                   android:resource="@xml/searchable"/>          

    </application>

</manifest>

SearchableActivity.java

package com.example.searchapp;

import android.app.ListActivity;
import android.app.SearchManager;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;

public class SearchableActivity extends ListActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.search);

        // Get the intent, verify the action and get the query
        Intent intent = getIntent();
        if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
          String query = intent.getStringExtra(SearchManager.QUERY);
          doMySearch(query);
        }
    }

    private void doMySearch(String query) {
        Log.d("Event",query);
    }
}

这是一个指向所推荐项目的链接,如果有人能帮助我,我将永远感激不尽!

源代码

4

9 回答 9

149

您的问题出在您的 AndroidManifest 中。我几乎和你一样拥有它,因为这是我在文档之后得到的。但它不清楚或错误。

在查看 API Demos 源代码时,我发现“android.app.searchable”元数据必须进入您的“结果”活动,并且在主活动(或放置 SearchView 的活动)中,您使用“指向另一个活动” android.app.default_searchable”。

您可以在以下文件中看到它,这是我的测试项目中的清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>

        <meta-data
            android:name="android.app.default_searchable"
            android:value=".SearchActivity" />
    </activity>
    <activity
        android:name=".SearchActivity"
        android:label="@string/app_name" >

        <!-- This intent-filter identifies this activity as "searchable" -->

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

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

        <!-- This metadata entry provides further configuration details for searches -->
        <!-- that are handled by this activity. -->

        <meta-data
            android:name="android.app.searchable"
            android:resource="@xml/searchable" />
    </activity>
</application>

searchable.xml 中的提示和标签是引用,而不是硬编码字符串,这一点也很重要。

我希望它能解决你的问题。我花了一整天的时间才弄清楚:(

于 2012-07-28T21:07:09.560 回答
83

Android 指南明确表示:

// Assumes current activity is the searchable activity
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));

在你的情况下这是不正确的。因为您不想在 MainActivity 中搜索,而是在 SearchableActivity 中搜索。这意味着您应该使用此 ComponentName 而不是 getComponentName() 方法:

ComponentName cn = new ComponentName(this, SearchableActivity.class);
searchView.setSearchableInfo(searchManager.getSearchableInfo(cn));
于 2014-08-26T06:51:02.783 回答
12

此外,似乎 android:hint 和 android:label 属性都必须是对 strings.xml 中字符串的引用。懒惰和硬编码字符串值似乎根本不起作用:)

即不要这样做:

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:hint="Search for something..."
    android:label="My App">
</searchable>

但肯定会这样做(正如 OP 正确所做的那样):

<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:hint="@string/search_hint"
    android:label="@string/app_label">
</searchable>
于 2013-03-31T23:45:08.587 回答
7

如果您使用的是 Android Studio,

<meta-data
            android:name="android.app.default_searchable"
            android:value=".SearchActivity" />

部分可能不起作用。

写完整的包名,比如

<meta-data
                android:name="android.app.default_searchable"
                android:value="com.example.test.SearchActivity" />
于 2014-05-02T14:35:53.093 回答
7

小心“xml/searchable.xml”。如果您使用 和 进行了硬编码android:hintandroid:label它将无法正常工作。哈哈 应该是:

<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:hint="@string/app_name"
android:label="@string/search_lb"
android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"/>
于 2015-07-08T07:46:01.840 回答
2

确保您的searchables.xml文件位于正确的位置(即在您的res/xml/文件夹中)并且同一文件不包含任何错误 - 否则您会发现它(SearchManager)getSystemService(Context.SEARCH_SERVICE).getSearchableInfo(componentName)会返回 null,从而破坏您的搜索功能。

(另外,请确保您componentName以适当的方式进行设置,因为 Android 指南中显示的示例仅适用于您在同一 Activity 中进行搜索和显示搜索的情况。)

于 2014-09-30T14:50:03.707 回答
2

实际上不需要使用上面答案中描述的“缺失部分”。这种方法(使用 a SearchView)与官方文档所说的完全一样,直到Using the Search widget。这里需要稍作修改如下:

a 中的属性SearchableInfo用于显示标签、提示、建议、创建用于启动搜索结果屏幕的意图以及控制其他功能,例如语音按钮 ( docs )。

因此,SearchableInfo我们传递给的对象SearchView.setSearchableInfo(SearchableInfo s)必须包含对应该显示的目标活动的正确引用以显示搜索结果。这是通过手动传递ComponentName我们的目标活动来完成的。一个用于创建 a 的构造函数ComponentName

public ComponentName (String pkg, String cls)

pkgcls是要启动以显示搜索结果的目标活动的包名和类名。注意:

pkg必须指向项目的根包名,并且,

cls必须是类的完全限定名(即整个事物)

例如:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    // Get the SearchView and set the searchable configuration
String pkg = "com.example.musicapp"
String cls = "com.example.musicapp.search.SearchActivity"
ComponentName mycomponent = new ComponentName(pkg,cls);       
SearchManager searchManager =(SearchManager)getSystemService(Context.SEARCH_SERVICE);
SearchView searchView = (SearchView) menu.findItem(R.id.menu_search).getActionView();
searchView.setSearchableInfo(searchManager.getSearchableInfo(mycomponent));
searchView.setIconifiedByDefault(false);   //if using on actionbar
return true;
}

根据您的要求,看看其他ComponentName构造函数。

于 2013-12-12T10:26:30.713 回答
0

我在将这样的搜索意图过滤器添加到可搜索活动时遇到了同样的问题:

   <activity
        android:launchMode="singleTop"
        android:name=".ui.activities.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>

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

        <meta-data
            android:name="android.app.searchable"
            android:resource="@xml/searchable" />
    </activity>
于 2019-11-03T03:14:33.737 回答
-1

仔细检查相应的条目(即 search_hint 和 app_label)是否存在于 values/strings.xml

例如

      <string name="app_label">FunApp</string>
      <string name="search_hint">Caps Off</string>
于 2014-12-11T02:47:20.597 回答