Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 AutoCompleteTextView (参考:AutoCompleteTextView)
我能够获得此视图提供的自动建议列表。
现在我想从这个视图中禁用第二个建议。
你能告诉我如何实现吗?谢谢
AutoCompleteTextView通过扩展ArrayAdapter然后覆盖 该自定义适配器的方法来为您创建自定义数据适配器,isEnabled以定义哪些项目是可点击的。
AutoCompleteTextView
ArrayAdapter
isEnabled
@Override public boolean isEnabled(int position) { // TODO Auto-generated method stub return super.isEnabled(position); }