Algolia - 即时搜索助手
Algolia - InstantSearchHelper
我正在学习有关如何将 Algolia 实现到 Android 应用程序中的教程。
Tutorial
行:
Searcher searcher = Searcher.create(ALGOLIA_APP_ID, ALGOLIA_SEARCH_API_KEY, ALGOLIA_INDEX_NAME);
helper = new InstantSearchHelper(this, searcher);
helper.search();
一直给我这个错误:
Cannot resolve symbol ‘InstantSearchHelper’
我遇到了同样的问题,但经过一番研究,只需删除 "Helper":
InstantSearch helper = new InstantSearch(this, searcher);
我正在学习有关如何将 Algolia 实现到 Android 应用程序中的教程。 Tutorial
行:
Searcher searcher = Searcher.create(ALGOLIA_APP_ID, ALGOLIA_SEARCH_API_KEY, ALGOLIA_INDEX_NAME);
helper = new InstantSearchHelper(this, searcher);
helper.search();
一直给我这个错误:
Cannot resolve symbol ‘InstantSearchHelper’
我遇到了同样的问题,但经过一番研究,只需删除 "Helper":
InstantSearch helper = new InstantSearch(this, searcher);