这很简单。您只需使用 Google 的搜索功能,当用户长按菜单按钮时,它会加载一个搜索文本框,您可以在其中输入搜索查询以在您的应用程序中进行搜索。
可搜索的应用程序文件必须包含该元素作为根节点并指定一个或多个属性。例如
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:label="@string/app_label"
android:hint="@string/search_hint" >
</searchable>
然后声明一个活动来接受 ACTION_SEARCH 即
<application ... >
<activity android:name=".SearchableActivity" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity>
</application>
现在我们需要控制查询及其执行方式。我将它用于我的应用程序。
@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);
}
}
安卓安卓
搜索