Android 中的自定义列表

发布于 2024-12-03 06:32:39 字数 396 浏览 1 评论 0原文

我正在创建一个 Android 应用程序,其中有一个联系人列表。我使用以下代码在列表视图中显示联系人列表:

setListAdapter(new ArrayAdapter(
                        getApplicationContext(),
                        android.R.layout.simple_list_item_1, ct_name));

其中变量 ct_name 是包含联系人姓名的数组。现在我想在每个联系人前面添加 2 个图像。这些图像用于呼叫和消息选项。所有联系人的图像都是相同的。谁能告诉我如何显示列表中的 2 张图像以及联系人。据我搜索,我想我必须制作一个自定义适配器,但我无法了解如何做到这一点。有人能帮我解决这个问题吗?

I am creating a android app in which i have a list of contacts. I am displaying the list of contacts in the list view using the following code :

setListAdapter(new ArrayAdapter(
                        getApplicationContext(),
                        android.R.layout.simple_list_item_1, ct_name));

where the variable ct_name is an array containing contact names. Now i want to add 2 images in front of each contact. The images are for calling and messaging option. The images will be same for all the contacts. Could anyone tell me how to display the 2 images in the list along with the contacts. As far as i have searched I guess i would have to make a custom adapter but i am not able to follow on how to do so. Could anyone help me with this?

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

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

发布评论

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

评论(2

你げ笑在眉眼 2024-12-10 06:32:39

在 Andorid 中创建 ListView 必须使用自定义列表适配器。

如果你想在 android 中创建很棒的自定义 ListView,请不要错过阅读 &复制粘贴以下教程的代码。

带有图像的 Android 自定义 ListView 示例

A Custom List Adapter is must for creating ListView in Andorid.

If you want to create awesome Custom ListView in android, don't miss to read & copy-paste code of following tutorial.

Android Custom ListView Example with Images

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