自定义 ListView 的 ArrayAdapter 出现问题
我想显示自定义列表视图。我已经实现了:Ch。 4:Android ListView 和 ListActivity 中的 ListActivity 扩展 - 教程
有没有办法在不传递整个 String[] 名称的情况下显示列表。我只想传递屏幕上的几个名称(5 到 6 个名称),并在滚动屏幕时动态传递其他名称?
是否必须向 ArrayAdapter 提供一个数据集?
I want to show custom list view. I have implemented like : Ch. 4: ListActivity Extended in Android ListView and ListActivity - Tutorial
Is there any way to show list without passing whole String[] name. I want to pass only few names (5 to 6 names) which are on the screen and pass other names dynamically when scrolling the screen ?
Is it must to give a data set to the ArrayAdapter ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 OnScrollListener 在滚动屏幕时动态添加项目
Try an OnScrollListener for dynamically add item when scrolling the screen