我在网上搜索但没有找到任何帮助。我想在搜索建议中添加一个自定义的“高级搜索”按钮,引导用户访问另一个活动/片段。我在Google图书应用中有一个截图: Google books example
有人知道如何实施吗?
答案 0 :(得分:0)
最简单的方法是在搜索栏下方添加一个视图,只需更改可见性。
另一种方法是使用AutoCompleteTextView: https://developer.android.com/reference/android/widget/AutoCompleteTextView.html 然后使用这样的东西来检查选择了哪个: AutoCompleteTextView detect if user choosed suggestion
否则,在侧面添加菜单按钮将是一个不错的选择。