如何增加 MaterialSearchView 中建议文本的大小?

How to increase the size of the text in suggestions in MaterialSearchView?

我已经在一个片段中实现了 MaterialSearchView,它运行良好。现在我想增加建议中文本的大小。我怎样才能做到这一点?谢谢!

我不确定这个库的 developers/contributors 是否提供了一种不需要分叉和编辑库的方法。

无论如何,对我来说,最简单的方法就是编辑库。对于你的情况,如果你想编辑建议 textview 的文本属性,你可以分叉 lib 并编辑名为 suggest_item 的布局,因为它是显示建议的适配器使用的布局。

链接this and this


如果这不适合您,您可以随时将新问题 and/or 添加到库的 developers/contributors github 上他们的回购问题跟踪器上的问题,跟随 this link


编辑: 针对您在评论中关于如何处理点击建议的问题:

lib的developers/contributors提供了一个public方法,可以用来添加点击监听器,命名为setOnItemClickListener

完整方法代码请参见this