ANDROID - ListView ArrayAdapter(打印特定属性)
我在 listview 活动中使用 listview 和 listAdapter,如下所示:
setListAdapter(new ArrayAdapter<MyItem>(this,R.layout.catalog, R.id.label, items));
每个项目都有 item 属性...我如何打印它?
Im using listview in my listview activity with listAdapter like this:
setListAdapter(new ArrayAdapter<MyItem>(this,R.layout.catalog, R.id.label, items));
each item has item property ... how am i able to print it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的列表视图布局中添加一个
TextView
在您的自定义适配器重写方法 getView 中设置此文本视图的值
In your listview layout add a
TextView
Set the value of this textview in your Custom Adapter override method getView