我正在我的应用程序中实现自定义搜索建议。我找到了有关添加自定义建议的开发人员文档。 http://developer.android.com/guide/topics/search/adding-custom-suggestions.html
到目前为止,我已经创建了一个这样的 searchable.xml。
<?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"
android:searchSuggestAuthority="com.example.MyCustomSuggestionProvider">
</searchable>
我现在正在实施 MyCustomSuggestionProvider,但我发现很难构建建议表。如何使用 MatrixCursor 构建建议表而不实际构建文档中提到的表?请提供代码,以便于理解。