ListView 或 ListFragments 的自定义列表适配器
我们如何为 Activity 中的 ListView 定义自定义 ListAdapter(如 ArrayAdapter 或 IconicAdapter)?我们如何对 ListFragments 做同样的事情?任何示例或链接将不胜感激。谢谢。
How can we define Custom ListAdapter(like ArrayAdapter or IconicAdapter) for ListView in activity? How can we do the same for ListFragments? any example or links will be appreciated.Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ListFragment
包含一个ListView
,因此实际上没有区别。您只需调用getListView()
来获取引用,然后就可以像往常一样设置适配器。A
ListFragment
holds aListView
, so there is really no difference. You just callgetListView()
to get a reference and then you can set an adapter as usual.在我的 ListFragment onActivityCreated 中,我设置了适配器并通知。
适配器是自定义的,它会扩展自定义视图。文本视图的内容永远不会显示。
公共类 MyAdapter 扩展 BaseAdapter {
In my ListFragment onActivityCreated I set the adapter and notify.
The adapter is custom, which inflates a customview. The contents of the text view never show up.
public class MyAdapter extends BaseAdapter {