如何在 Android 中拥有自定义联系人列表

发布于 2024-12-22 20:04:14 字数 364 浏览 1 评论 0原文

这是我在 Android 中的第一个应用程序。我试图在我自己的应用程序中维护联系人列表(电话联系人的子集)。我在某种程度上读取了 Android 上的联系人信息并尝试对其进行操作。但我面临的挑战是,

  • 最好通过首选项将联系人存储(持久化)在应用程序中。 (ListPreference 不适用于此)。
  • 我只需要每个联系人的姓名、电话号码和电子邮件,并将其显示在列表视图中。

等效的 iPhone 版本如下所示。但是如何在 Android 中实现这一点

在此处输入图像描述

非常感谢有关实现上述内容的任何提示。

This is my first application in Android. I am trying to maintain a list of contacts (a subset of the phone contacts) in my own application. I was to an extent read the contacts from Android and try to manipulate with it. But the challenge I face is,

  • Storing the contacts (persisting) in the application preferably through Preferences. (ListPreference not usable for this).
  • I only need name, phone number and email from every contact and display it in a list view.

The equivalent iPhone version looks like this. But how to close achieve this in Android

enter image description here

Any tips on achieving the above is much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

赠佳期 2024-12-29 20:04:14

如果它是电话联系人的子集,为什么不在 SQLite 表中仅存储您想要在子集中包含的联系人的查找 URI?如果您担心查找 URI 的性能,您可以同时存储联系人查找 URI 和 ID。

If it is a subset of the phone contacts why don't you store in a SQLite table just the lookup-URI of the contacts you want to have in your subset? You can store both the contact lookup-URI and ID if you are worried about the performances of lookup-uri.

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