如何保持自动完成文本视图为空(准备输入)?
我有一个列表视图,其顶部有一个自动完成文本视图。单击列表视图和自动完成文本视图文本,即可进行详细活动。当按下后退按钮时,它来自详细活动到列表视图页面,但自动完成文本视图包含相同的搜索产品术语。我怎样才能将其保留为空以便可以输入(而不是一次又一次地删除它)?
谢谢..
I have a listview , on top of it there is a auto complete textview. Onclick of listview and autocomplete textview text ,it goes the detail activity. when back button is pressed,it comes from detail activity to list view page but the autocomplete textview contains same searched product term. How can i keep it empty so that it is ready to type(in stead of deleting it again and again)?
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是在 Activity 的 onResume() 方法中,获取对 AutoCompleteTextView 的引用并使用 setText() 方法将文本设置为空。并使用 requestFocus() 将焦点赋予 AutocompleteTextview。
One way would be in your onResume() method in activity, get the reference to your AutoCompleteTextView and use setText() method to set text as empty. and use requestFocus() to give focus to AutocompleteTextview.