自定义 AutoCompleteTextview 从 Web Android 获取数据

发布于 2024-12-18 21:27:37 字数 150 浏览 2 评论 0原文

我想实现一个自定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

祁梦 2024-12-25 21:27:37

要提供自动完成功能,请执行以下步骤:

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文