是否可以在FirestoreRecyclerOptions中使用Algolia查询?
为了让我的用户能够执行更复杂的搜索,我正在与Algolia合作。
com.algolia.search.saas.Query algolia_query = new com.algolia.search.saas.Query(mLastQuery) .setAttributesToRetrieve("content") .setAttributesToRetrieve("category") .setHitsPerPage(10); index.searchAsync(algolia_query, new CompletionHandler() { @Override public void requestCompleted(JSONObject jsonObject, AlgoliaException e) { Log.d("algolia", jsonObject.toString()); } });
我想将此jsonObject转换为兼容的东西FirestoreRecyclerOptions
以便能够使用FirestoreRecyclerAdapter
弑天下
相关分类