Android 中的自定义列表
我正在创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须实现自定义 ListAdapter。
请参阅本教程:
http://www.softwarepassion.com/ android-series-custom-listview-items-and-adapters/
You have to implement a custom ListAdapter.
See this tutorial:
http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters/
在 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