小编Kme*_*mel的帖子

使用mpandroidchart 2.0.7隐藏边框

我正在使用MPAndroidChart库 2.0.7.我该如何隐藏边框?在1.7.4版本中,方法setDrawBorder(boolean)可用,它不再是这种情况:(

非常感谢 !

android mpandroidchart

3
推荐指数
1
解决办法
2161
查看次数

是否可以在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());
                }
            });
Run Code Online (Sandbox Code Playgroud)

我想将此jsonObject转换为兼容的东西,FirestoreRecyclerOptions以便能够使用FirestoreRecyclerAdapter

谢谢 !

android google-cloud-firestore

0
推荐指数
1
解决办法
2302
查看次数