自定义 AutoCompleteTextview 从 Web Android 获取数据
我想实现一个自定义 AutocompleteTextview,其中每个建议需要三个文本视图。
到目前为止,我已经实现了自定义适配器来填充来自网络的值。但我不知道创建接受 3 个文本视图的自定义 AutocompleteTextview。
请帮助我!!!!
I want to implement a custom AutocompleteTextview in which i need three textview for each suggestion.
So far i have implemented custom adapter to populate the values from web. But i don't have idea to create custom AutocompleteTextview that accepts 3 textview.
Please do help me !!!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要提供自动完成功能,请执行以下步骤:
1. 实现基本的可搜索活动,如创建搜索界面中所述。
使用有关提供自定义建议的内容提供商的信息修改可搜索配置。
2.为您的建议构建一个表(例如在 SQLiteDatabase 中),并使用所需的列格式化该表。
3.创建一个可以访问您的建议表的内容提供商,并在清单中声明该提供商。
4.声明当用户选择建议时要发送的Intent类型(包括自定义操作和自定义数据)。
To provide auto-complete functionality do the following steps,
1.Implement a basic searchable activity, as described in Creating a Search Interface.
Modify the searchable configuration with information about the content provider that provides custom suggestions.
2.Build a table (such as in an SQLiteDatabase) for your suggestions and format the table with required columns.
3.Create a Content Provider that has access to your suggestions table and declare the provider in your manifest.
4.Declare the type of Intent to be sent when the user selects a suggestion (including a custom action and custom data).