java - 安卓辅助搜索 : The search button does not invoke the searchable Activity (Other Solutions did not help)

标签 java android search android-search android-searchmanager

我写了这个小测试应用程序来演示这个问题,即当用户按下键盘上的搜索按钮时,可搜索 Activity 没有启动。

我一直在关注 developer guides ,但从我的网络搜索中,事实证明官方开发人员指南遗漏了一些要点。 从我的 SO 搜索(没有帮助):

  • Reference 1:通过在中添加标签解决 list 中的元素。我也调查了 示例“用户词典”的 list (我不知道在哪里可以 在网上找到样本,或者我会链接到它)。这个标签在 应用程序元素。

  • Reference 2:中的“android:label”和“android:hint” res/xml/searchable.xml 必须是对字符串资源的引用,而不是 硬编码字符串。我的是。

  • Reference 3:添加标签 “android:name="android.app.default_searchable""(和" android:value="<.searchable-activity-name>"") 在 list 中 将要启动搜索的 Activity。尝试过 这个,似乎没有用。

  • Reference 4: “您的 Searchable Activity 必须做某事 - 并且 实际上显示结果。”我的确实如此,它接收到 Intent ACTION_SEARCH Action ,并传递检索到的搜索查询字符串 从 Intent 到名为“performSearch(string)”的方法 在 TextView 中显示字符串。

那么我做错了什么,我该怎么做才能解决这个问题?

代码: MainActivity.java - 有一个 SearchView - 用户输入查询并按下键盘上的搜索按钮。

public class MainActivity extends ActionBarActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

TestTwoActivity.java

    public class TestTwoActivity extends Activity {
        TextView tv;
        private static final String TAG = TestTwoActivity.class.getSimpleName();

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_test_two);

            /**
             * The following code enables assisted search on the SearchView by calling setSearchableInfo() and passing it our SearchableInfo object.
             */
            SearchView searchView = (SearchView) findViewById(R.id.searchActivity_searchView);
            // SearchManager => provides access to the system search services.

            // Context.getSystemService() => Return the handle to a system-level
            // service by name. The class of the returned object varies by the
            // requested name.

            // Context.SEARCH_SERVICE => Returns a SearchManager for handling search

            // Context = Interface to global information about an application environment. This is an abstract class whose implementation is provided by the Android
            // system. It allows access to application-specific resources and classes, as well as up-calls for application-level operations such as launching
            // activities, broadcasting and receiving intents, etc.

            // Activity.getComponentName = Returns a complete component name for this Activity 

            SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
            searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));

            /**
             * If the search is executed from another activity, the query is sent to this (searchable) activity in an Intent with ACTION_SEARCH action.
             */
            // getIntent() Returns the intent that started this Activity
            Intent intent = getIntent();
            if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
                Log.i(TAG, "Search Query Delivered");//check
                String searchQuery = intent.getStringExtra(SearchManager.QUERY);
                performSearch(searchQuery);
            }

        }

        private void performSearch(String searchQuery) {
            //Just for testing purposes, I am simply printing the search query delivered to this searchable activity in a textview.
            tv = (TextView) findViewById(R.id.testTwoActivity_textView);
            tv.setText(searchQuery);
        }
}

res/xml/searchable.xml - 可搜索配置

<?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/searchViewHint" >
</searchable>

list 文件

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

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

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

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

        <activity
            android:name=".TestTwoActivity"
            android:label="@string/title_activity_test_two" >
            <intent-filter>
                <action android:name="android.intent.action.SEARCH"/> <!-- Declares the activity to accept ACTION_SEARCH intent -->
            </intent-filter> 
                <meta-data 
                    android:name="android.app.searchable"
                    android:resource="@xml/searchable" /> <!-- Specifies the searchable configuration to use --> 
        </activity>

        <!-- Points to searchable activity so the whole app can invoke search. -->
        <meta-data android:name="android.app.default_searchable"
                   android:value=".TestTwoActivity" />

    </application>

</manifest>

布局:

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"

    android:orientation="vertical"

    android:layout_width="match_parent"
    android:layout_height="match_parent"

    tools:context="com.tests.MainActivity" >

    <android.support.v7.widget.SearchView
        android:id="@+id/searchActivity_searchView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
         /> 

</LinearLayout>

activity_test_two.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"

    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    tools:context="${relativePackage}.${activityClass}" >

    <android.support.v7.widget.SearchView
        android:id="@+id/searchActivity_searchView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
         /> 

    <TextView
        android:id="@+id/testTwoActivity_textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</LinearLayout>

编辑 1:我用搜索对话而不是搜索小部件编写了一个类似的应用程序,效果非常好,这真是太疯狂了。

我尝试在 Eclipse 中调试它,但调试停止了,因为 TestTwoActivity(可搜索的 Activity )根本不会启动。

最佳答案

我不确定您是否忘记添加它,但是您的 MainActivity 没有在 SearchView 上设置可搜索信息:

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

    SearchView searchView = (SearchView) findViewById(R.id.searchActivity_searchView);
    SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
    searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
}

作为旁注:

我在使用 flavors 时遇到了 default_searchable 元标记的问题。它似乎只在使用完整路径(跳过 flavor )到搜索 Activity 时才有效,例如:

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

关于java - 安卓辅助搜索 : The search button does not invoke the searchable Activity (Other Solutions did not help),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27567796/

相关文章:

java从cmd运行命令

java - 在@Transactional 服务方法中捕获 DataIntegrityViolationException

java - 在 Flutter 应用程序中使用 Java 或其他语言

android - c++ android ndk 使用数组

ruby - 是什么导致了 "already initialized constant"警告?

mysql - 如何操纵 MySQL 全文搜索相关性以使一个字段比另一个字段更多 'valuable'?

c - 需要帮助在 C 中实现二进制搜索

java - 当我编译此代码时,出现“整数太大”之类的错误。虽然我声明它很长,但我不知道为什么它显示错误?

android - 使用 LinkMovementMethod 和 Html.fromHtml 时更改链接颜色

android - Unity 3d 构建尺寸太大