我有arraylist,因为我已将filterable添加到我的arraylist中。当我顺序搜索时,它会给出正确的结果。假设我的字符串是String demo =“我是Android开发人员”
当我搜索我是android时,我无法给出确切的结果,但是如果我搜索了
“ developer android”它没有给我正确的结果,请帮助我。 我的搜索适配器
final List<Article> articlesList =
StreamSupport.stream(articleProviderComponent.getAllArticle().spliterator(), false)
.map(ArticleMapper::articleEntity2Article)
.collect(Collectors.toList());