如何将自定义按钮放入搜索建议菜单中?
How to put a custom button into a search suggestions menu?
我在网上搜索过,但没有找到任何帮助。我想将自定义 "Advanced Search" 按钮放入搜索建议中,以将用户引导至另一个 activity/fragment。我在 Google Books 应用程序中实现了它的屏幕截图:
Google books example
有人知道如何实现吗?
最简单的方法是在搜索栏下方添加一个视图,只需更改可见性即可。
另一种方法是使用 AutoCompleteTextView:
https://developer.android.com/reference/android/widget/AutoCompleteTextView.html
然后使用类似这样的东西来检查选择了哪个:
AutoCompleteTextView detect if user choosed suggestion
否则,在侧面添加一个菜单按钮将是一个不错的选择。
我在网上搜索过,但没有找到任何帮助。我想将自定义 "Advanced Search" 按钮放入搜索建议中,以将用户引导至另一个 activity/fragment。我在 Google Books 应用程序中实现了它的屏幕截图: Google books example
有人知道如何实现吗?
最简单的方法是在搜索栏下方添加一个视图,只需更改可见性即可。
另一种方法是使用 AutoCompleteTextView: https://developer.android.com/reference/android/widget/AutoCompleteTextView.html 然后使用类似这样的东西来检查选择了哪个: AutoCompleteTextView detect if user choosed suggestion
否则,在侧面添加一个菜单按钮将是一个不错的选择。