可搜索的活动被调用两次

时间:2013-03-26 09:19:28

标签: android search

我正在尝试创建我的第一个Android应用,并在添加SEARCH功能的过程中。我已经按照Android Developer文档添加了“搜索”对话框和小部件。不幸的是,每当我执行搜索时,都会调用搜索活动的“onCreate”和“onNewIntent”。也就是说,通过在操作栏搜索框中键入内容并按Enter键,搜索称为TWICE。我被卡住了。是否应该从Searchable活动返回一些全球标志,通知应用程序搜索已完成?是否同时调用了搜索对话框和小部件?

我搜索过此网站和网络上的帖子无济于事。谢谢你的帮助。

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.shop"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <uses-permission android:name="android.permission.INTERNET" />

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

        <service android:name="com.shop.RestIntentService" />

        <activity
            android:name="com.shop.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="com.shop.CatalogActivity"
            android:label="@string/app_name" >
        </activity>

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

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

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

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

    </application>

</manifest>

SearchableActivity.java

 public class SearchableActivity extends ListActivity implements Receiver {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        System.out.println("onCreate");
        handleIntent(getIntent());
    }

    @Override
    public void onNewIntent(Intent intent) {
        super.onNewIntent(intent);
        System.out.println("onNewIntent");
        setIntent(intent);
        handleIntent(intent);
    }

    private void handleIntent(Intent intent) {
        if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
            String query = intent.getStringExtra(SearchManager.QUERY);
            doSearch(query);
        }
    }

    private void doSearch(String queryStr) {
        System.out.println("searching..." + queryStr);
    }

CatalogActivity.java

@Override   
    public boolean onCreateOptionsMenu(Menu menu) {
        MenuInflater inflater = getMenuInflater();
        inflater.inflate(R.menu.sample, menu);

        SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);

        SearchView searchView = (SearchView) menu.findItem(R.id.menu_search).getActionView();

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

        //return super.onCreateOptionsMenu(menu);
        return true;
    }   

sample.xml中

<item
    android:id="@+id/menu_search"
    android:actionViewClass="android.widget.SearchView"
    android:icon="@android:drawable/ic_menu_search"
    android:showAsAction="ifRoom|collapseActionView"
    android:title="@string/menu_search"/>

2 个答案:

答案 0 :(得分:10)

我认为onNewIntent和onCreate的方法是互斥的。您将launchMode设置为“singleTop”,因此将调用onNewIntent方法而不是onCreate。

当一个搜索请求被处理两次时,我遇到了类似的问题。使用WXGA 10.1平板电脑模拟器中的SearchableDictionary示例,我发现第一个搜索调用工作正常,但后续调用会创建两个SEARCH事件,因此它们会被处理两次。有人提到了Ti中的一个错误。 (http://developer.appcelerator.com/question/127166/android-search-keyboardtype-fires-return-event-twice

我在真正的三星平板电脑上测试了应用程序而我没有看到两个SEARCH事件,所以我猜这是一个模拟器问题,而不是代码问题。

答案 1 :(得分:2)

尝试删除SearchableActivity中的super.OnNewIntent(intent)。

根据您的清单,您正尝试使用搜索对话框

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

同时在菜单中使用SearchView。 如果您使用SearchView,则应使用

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

就像在http://developer.android.com/guide/topics/search/searchable-config.html中一样。

这是我的xml / searchable.xml示例:

<searchable xmlns:android="http://schemas.android.com/apk/res/android" 
    android:label="@string/app_name"
    android:hint="@string/search"
    android:searchSuggestAuthority="@string/authority"
    android:searchSuggestSelection=" ?"
    android:voiceSearchMode="launchRecognizer">
</searchable>