android搜索对话框无效

时间:2011-08-16 11:09:39

标签: android search dialog

我已经在机器人指南上使用了给定的教程,并在按下设备或菜单项上的搜索按钮后仍然完成了所需的操作。它没有打开搜索对话框。 我从这里获得了教程http://developer.android.com/guide/topics/search/search-dialog.html

我必须在此发布我的示例代码,以便您可以查看并尽可能提供帮助以便我知道我哪里出错了。 应出现对话框的活动

<activity android:name=".testAndroid"
                  android:theme="@android:style/Theme.NoTitleBar">
                  <meta-data android:name="android.app.default_searchable"
                   android:value="com.tester.android.Search" />
        </activity>

返回搜索结果的活动

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

我在res / xml文件夹中的可搜索文件

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

显示结果的活动

public class Search extends ListActivity {

    private Vector<?> loadedArticles;

    @Override
    protected void onCreate(Bundle icicle) {
        super.onCreate(icicle);

        setContentView(R.layout.articles);
        Intent intent = getIntent();
        String query="";
        if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
            query = intent.getStringExtra(SearchManager.QUERY);
        }

        boolean articlesLoaded = findArticles(query); // it shows results and renders it.

    }
}

请有人帮助我,为什么在按下搜索硬件按钮后我无法看到搜索对话框。

1 个答案:

答案 0 :(得分:12)

最后我自己找到了问题的解决方案

<searchable xmlns:android="http://schemas.android.com/apk/res/android"
    android:label="XYZ.com"
    android:hint="Search XYZ.com" >
</searchable>

这里我使用lablel和提示作为直接字符串。相反,我们需要使用@ string / label 我的意思是我们的字符串应该在strings.xml中,然后使用它们。 这是Android中的错误。