在自定义列表视图中显示我的数组列表结果
我想使用自定义列表视图显示我的数组列表结果。
现在我正在使用 android 布局显示我的结果。
setListAdapter(new StudentListAdapter(this,android.R.layout.simple_list_item_1, results));
我有两个字段来显示
- Locimage(来自 ImageUrl 的图像)
- Locname(并排)
文件位于: 错误/AndroidRuntime(335):引起:java.lang.NullPointerException
I want to display my arraylist results by using custom list view.
for now i'm displaying my results by using android layout.
setListAdapter(new StudentListAdapter(this,android.R.layout.simple_list_item_1, results));
I've two fields to display
- Locimage(Image from ImageUrl)
- Locname (side by side)
files are here: ERROR/AndroidRuntime(335): Caused by: java.lang.NullPointerException
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
由于您使用的是自定义列表适配器并且您已覆盖
getView
方法,我认为以下行:应该是:
Since you're using a custom list adapter and you have overridden the
getView
method I think the following line:Should be:
请参阅具有多个视图的 ListView 的 API 演示。
http://developer.android .com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html
Refer API Demos for ListView with Multiple Views on it.
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html
最终,您将需要重写您正在使用的适配器类的 getView() 方法。只需快速谷歌搜索即可找到大量示例。
这是非常基本的东西: http://sudarmuthu.com/blog/ using-arrayadapter-and-listview-in-android-applications
这是一个更复杂的:http://www.softwarepassion.com/android-series-custom-列表视图项目和适配器/
Ultimately, you're going to need to override the getView() method of the adapter class you're using. Just a quick google search found plenty of examples.
Here's something really basic: http://sudarmuthu.com/blog/using-arrayadapter-and-listview-in-android-applications
And here's a more complex one: http://www.softwarepassion.com/android-series-custom-listview-items-and-adapters/
试试这个代码
try this code