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.
是否有一些教程可以在编辑文本框中从数据库中检索数据,在输入字母时显示简单的下拉项目?我正在开发一个翻译应用程序,用户将在其中输入一个单词。在键入单词的字母时,EditText 能够以下拉菜单的形式向用户建议单词。
基本上你实现了一个扩展 AutoCompleteTextView 的类。然后你使用
myACTV.setAdapter(myAdapter);
在哪里
mActivities = new SimpleCursorAdapter(...);
开始搜索
简单光标适配器
然后将结果限制在网页左侧的培训类别中。
记事本练习应该能让你走得更远。